I try to set friendship to method from class GameSimulator on Player class.
for some reason I get error. I really need your help
GameSimulator.h:
Player.h
Tanks!!
|
I try to set friendship to method from class for some reason I get error. I really need your help GameSimulator.h: Player.h Tanks!! |
||||
|
Your GameSimulator class definition refers to a pointer to Remove the Note that the implementations of each of these classes (the .cpp files) will each need to include the .h file for the other. |
|||||||||
|
GameSimulatoris an incomplete type, so no way for compiler to know about these methods when compilingPlayer. Instead, letGameSimulatorforward declarePlayerinGameSimulator.h, and letPlayer.h#includeGameSimulator.h. – user315052 Jun 17 '12 at 0:54