mxe/src/wxwidgets-test.cpp

19 lines
359 B
C++
Raw Normal View History

2012-03-28 14:46:58 +01:00
/* This file is part of MXE. */
2010-12-05 17:37:02 +00:00
/* See doc/index.html for further information. */
#include <wx/wx.h>
class TestApp: public wxApp
{
private:
bool OnInit()
{
wxFrame *frame = new wxFrame(0, -1, _("Hello, World!"));
frame->Show(true);
SetTopWindow(frame);
return true;
}
};
IMPLEMENT_APP(TestApp)