
Untitled
By: a guest on
Jun 18th, 2011 | syntax:
C++ | size: 0.33 KB | hits: 68 | expires: Never
/**** 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