12 lines
186 B
C++
12 lines
186 B
C++
#include "app.h"
|
|
#include "main.h"
|
|
|
|
IMPLEMENT_APP(MyApp);
|
|
|
|
bool MyApp::OnInit()
|
|
{
|
|
MyFrame* frame = new MyFrame(0L, _("wxWidgets Application Template"));
|
|
frame->Show();
|
|
return true;
|
|
}
|