我有這個問題符號「A」不能在文件中了Bh解決,我使用的Eclipse IDE的C/C++開發人員:符號「A」無法解析
//B.h file
#ifndef __B_H__
#define __B_H__
#include "A.h"
class B: public cs::A{
};
#endif
,其中包括阿文件:
//A.h file
#ifndef A_H_
#define A_H_
namespace cs{
class A {
};
}
#endif
我在這裏錯過了什麼?
它不能解決問題,符號「A」無法解析! – nabil