BasicApp::BasicApp() { frame = new wxFrame(NULL, -1, "My First GUI Program"); }
bool BasicApp::OnInit() { frame->Show(true); return true; }