この問題 Symbol 'A' could not be resolve 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
ここで何が欠けていますか?