about summary refs log tree commit diff stats
path: root/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'main.cpp')
-rw-r--r--main.cpp18
1 files changed, 18 insertions, 0 deletions
diff --git a/main.cpp b/main.cpp new file mode 100644 index 0000000..940fecc --- /dev/null +++ b/main.cpp
@@ -0,0 +1,18 @@
1#include <wx/wxprec.h>
2
3#ifndef WX_PRECOMP
4#include <wx/wx.h>
5#endif
6
7#include "tracker_frame.h"
8
9class TrackerApp : public wxApp {
10public:
11 virtual bool OnInit() {
12 TrackerFrame *frame = new TrackerFrame();
13 frame->Show(true);
14 return true;
15 }
16};
17
18wxIMPLEMENT_APP(TrackerApp);