我有这个问题 Symbol 'A' could not be resolved in file Bh ,我正在为 C/C++ 开发人员使用 Eclipse IDE:
//B.h file
#ifndef __B_H__
#define __B_H__
#include "A.h"
class B: public cs::A{
};
#endif
包括 Ah 文件:
//A.h file
#ifndef A_H_
#define A_H_
namespace cs{
class A {
};
}
#endif
我在这里缺少什么?