diff options
Diffstat (limited to 'main.cpp')
-rw-r--r-- | main.cpp | 18 |
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 | |||
9 | class TrackerApp : public wxApp { | ||
10 | public: | ||
11 | virtual bool OnInit() { | ||
12 | TrackerFrame *frame = new TrackerFrame(); | ||
13 | frame->Show(true); | ||
14 | return true; | ||
15 | } | ||
16 | }; | ||
17 | |||
18 | wxIMPLEMENT_APP(TrackerApp); | ||