1 #include "app.h"
2 #include "main.h"
3 
4 IMPLEMENT_APP(MyApp);
5 
OnInit()6 bool MyApp::OnInit()
7 {
8 	MyFrame* frame = new MyFrame(0L, wxT("wxHexCtrl; Hex Editor Control Application"));
9 	frame->Show();
10 	return true;
11 }
12