3

我正在处理的 wxWidgets 项目似乎有问题。对于不涉及任何虚函数的类,我不断收到 vtable 链接器错误。我想知道是否有人可以对这个问题有所了解,因为在我的理解中,不应该有一个不使用虚函数的类的 vtable。当有人忘记定义解构函数时,我见过的大多数类似主题都会发生,但我很确定解构函数的定义是正确的。错误可以在下面看到。

||=== Hike Planner GUI, Debug ===|
obj\Debug\GUIFrame.o||In function `PlanWindow':|
E:\Projects\Hike Planner GUI\GUIFrame.cpp|76|undefined reference to `vtable for              PlanWindow'|
E:\Projects\Hike Planner GUI\GUIFrame.cpp|76|undefined reference to `vtable for PlanWindow'|
obj\Debug\GUIFrame.o||In function `~PlanWindow':|
E:\Projects\Hike Planner GUI\GUIFrame.cpp|81|undefined reference to `vtable for PlanWindow'|
E:\Projects\Hike Planner GUI\GUIFrame.cpp|81|undefined reference to `vtable for PlanWindow'|
E:\Projects\Hike Planner GUI\GUIFrame.cpp|81|undefined reference to `vtable for PlanWindow'|
||=== Build finished: 5 errors, 0 warnings ===|

来自 GUIFrame.h 的片段

class PlanWindow : public wxWindow
{
    DECLARE_EVENT_TABLE()

    public:
        PlanWindow(wxWindow* parent, wxWindowID id);

        ~PlanWindow();

        void GetLocationList(int RetCode);

        wxListBox *PlanList;
};

来自 GUIFrame.cpp 的片段:

PlanWindow::PlanWindow(wxWindow* parent, wxWindowID id) : wxWindow(parent,id) 
{

}

PlanWindow::~PlanWindow()
{

}

void PlanWindow::GetLocationList(int RetCode)
{
    if(RetCode == DEST)
    {

    }
    else if(RetCode == TH)
    {

    }
    else if(RetCode == FREE)
    {

    }
    else
    {

    }
}

任何帮助都会很棒。错误发生在构造函数和析构函数定义中。

4

1 回答 1

3

您还需要在文件中使用/来实现声明的事件表。一个例子;BEGIN_EVENT_TABLEEND_EVENT_TABLEcpp

BEGIN_EVENT_TABLE(PlanWindow, wxWindow)
//  EVT_SIZE (PlanWindow::OnSize)       // Example size handler
END_EVENT_TABLE()
于 2013-07-25T18:07:31.510 回答