Whenever a class declaration uses another class only as pointers, does it make sense to use a class forward declaration instead of including the headerfile in order to pre-emptively avoid problems with circular dependencies? so, instead of having:
//file C.h
#include "A.h"
#include "B.h"
class C{
A* a;
B b;
...
};
do this instead:
//file C.h
#include "B.h"
class A;
class C{
A* a;
B b;
...
};
//file C.cpp
#include "C.h"
#include "A.h"
...
Is there any reason why not to do this wherever possible?


deletea pointer using only a forward declaration, but if the class in fact has a non-trivial destructor then you get UB. So ifdelete"only uses pointers" then yes, there's a reason. If it doesn't count, not so much. – Steve Jessop Mar 28 '12 at 11:56