结构如下:
a.h
class a
{}
a.cppb.cpp
#include "a.h"b.h
class b
{
public :
a test;
}
一编译就报错,说找不到a
但要求是不能在b.h中加入下语句include "b.h"
我该如何做