/**** testA.h ****/ #ifndef __TESTA__ #define __TESTA__ #include "testB.h" class testA { public: testA(void); ~testA(void); testB __; }; #endif /**** testB.h ****/ #ifndef __TESTB__ #define __TESTB__ #include "testA.h" class testB { public: testB(void); ~testB(void); testA __; }; #endif