0

この問題 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

ここで何が欠けていますか?

4

1 に答える 1

1

Nothing wrong with the code. Most likely your include path is incorrect.

#pragma message ("Parsing A.h")
于 2012-05-05T12:05:55.920 に答える