blob: 296738acd429132f33b166b3ea2533159318bd2f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
//#include "MyApp.h"
#include <wx/wx.h>
#include "MyFrame.h"
class MyApp: public wxApp
{
virtual bool OnInit();
};
DECLARE_APP(MyApp)
IMPLEMENT_APP(MyApp)
bool MyApp::OnInit()
{
MyFrame *frame = new MyFrame( _T("K8055 USB Experiment Interface Board"), wxPoint(50,50), wxSize(635,340) );
frame->Show(TRUE);
SetTopWindow(frame);
return TRUE;
}
|