Nightinggale
Deity
- Joined
- Feb 2, 2009
- Messages
- 5,378
How did you manage to include CvPlayerAI.h in CvPlayer.h without cyclic dependencies?
PHP:
class CvPlayerAI;
Generally speaking, if you can get away with declaring the class instead of including the header file, do it. Header files including header files quickly turns into a mess and it slows down the compiler. It becomes less of an issue due to using a precompiled header file, but it's always a good idea to include as little as possible.