我有这个父类:
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;
还有两个子类,其中一个是覆盖这 3 个虚拟函数,第二个是对这 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)
任何人都知道如何摆脱这些错误?