2013-07-29 70 views
0

嗨,任何人都可以告訴我如何解決這個問題?錯誤C2039:'ClientSpottingTargetComponent':不是'fb'的成員

這裏是我的代碼

#ifndef _GetComponentFunction_H 
#define _GetComponentFunction_H 
namespace fb 
{ 
//Minimap 
fb::ClientSpottingTargetComponent *cstc = soldier->getComponent<fb::ClientSpottingTargetComponent>("ClientSpottingTargetComponent"); 
     cstc->m_spotType = fb::SpotType_Active; 

#endif 
+2

這是什麼語言?請爲此加上標籤......我假設C/C++? – rene

+0

你有什麼問題?你想做什麼?什麼不行? – 2013-07-29 08:38:14

回答

0

我假設有一個頭文件定義ClientSpottingTargetComponent,你需要包括。
請注意,您可能還需要添加相關的源文件,或鏈接到相關的庫。

+0

我需要包括它嗎? – user2594386

+0

是的。 #include [頭文件名] – doctorlove

+0

我現在得到這個錯誤C2059:語法錯誤:'常量'這裏是位置PAD(0x18);它是在ClientSpottingTargetComponent – user2594386

相關問題