私はこの親クラスを持っています:
enum UI_STATE
{
UI_STATE_SPLASH_SCREEN,
UI_STATE_LOGIN_SCREEN,
UI_STATE_CHARACTER_CREATION_SCREEN,
UI_STATE_CHARACTER_CHOOSE_SCREEN,
UI_STATE_LOADING_SCREEN,
UI_STATE_GAMEPLAY,
UI_STATE_EXIT_REQUESTED,
UI_STATE_UNKNOWN
};
[event_source(native)]
class UserInterface
{
protected:
MyGUI::Gui *mGUI;
public:
static UserInterface *Instance;
UI_STATE UI_CURRENT_STATE;
public:
UserInterface()
{
MyGUI::OgrePlatform* mPlatform = new MyGUI::OgrePlatform();
mPlatform->initialise(BaseObjects::mWindow, BaseObjects::mSceneMgr);
mGUI = new MyGUI::Gui();
mGUI->initialise();
UI_CURRENT_STATE = UI_STATE_UNKNOWN;
}
~UserInterface()
{
mGUI->destroyAllChildWidget();
mGUI->shutdown();
delete mGUI;
mGUI = NULL;
delete Instance;
Instance = NULL;
}
virtual void update();
virtual void GAMEPLAY_SCREEN_ShowTargetBox();
virtual void GAMEPLAY_SCREEN_HideTargetBox();
...//some other methods
}
UserInterface *UserInterface::Instance = NULL;
また、2つの子クラスがあります。そのうちの1つは、この3つの仮想関数をオーバーライドし、2つ目はこの3つの関数で何もしません。
子供1:
#ifndef GameplayScreenInterface_h
#define GameplayScreenInterface_h
#include "UserInterface.h"
#include "ControllableCharacterAdv.h"
class GameplayScreenUserInterface : public UserInterface
{
private:
...
public:
GameplayScreenUserInterface()
{
...
}
void GAMEPLAY_SCREEN_ShowTargetBox()
{
...
}
void GAMEPLAY_SCREEN_HideTargetBox()
{
...
}
void update()
{
UpdateTargetBox();
UpdateCharacterBox();
}
void UpdateCharacterBox()
{
...
}
void UpdateTargetBox()
{
if (...)
{
if (...)
{
...
}
else if (...)
{
...
}
else
{
...
}
}
else
GAMEPLAY_SCREEN_HideTargetBox();
}
};
#endif GameplayScreenInterface_h
と子供2:
#ifndef LoginScreenInterface_h
#define LoginScreenInterface_h
#include "UserInterface.h"
#include "NetworkManager.h"
class LoginScreenUserInterface : public UserInterface
{
public:
LoginScreenUserInterface()
{
...
}
};
#endif LoginScreenInterface_h
そしてコンパイルエラー:(
Error 9 error LNK1120: 3 unresolved externals
Error 8 error LNK2001: unresolved external symbol "public: virtual void __thiscall UserInterface::GAMEPLAY_SCREEN_HideTargetBox(void)" (GAMEPLAY_SCREEN_HideTargetBox@UserInterface@@UAEXXZ)
Error 7 error LNK2001: unresolved external symbol "public: virtual void __thiscall UserInterface::GAMEPLAY_SCREEN_ShowTargetBox(void)" (GAMEPLAY_SCREEN_ShowTargetBox@UserInterface@@UAEXXZ)
Error 6 error LNK2001: unresolved external symbol "public: virtual void __thiscall UserInterface::update(void)" (?update@UserInterface@@UAEXXZ)
誰かがそのエラーを取り除く方法を知っていますか?