diff options
Diffstat (limited to 'main.cpp')
-rw-r--r-- | main.cpp | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/main.cpp b/main.cpp deleted file mode 100644 index fe9aceb..0000000 --- a/main.cpp +++ /dev/null | |||
@@ -1,21 +0,0 @@ | |||
1 | #include <wx/wxprec.h> | ||
2 | |||
3 | #ifndef WX_PRECOMP | ||
4 | #include <wx/wx.h> | ||
5 | #endif | ||
6 | |||
7 | #include "tracker_config.h" | ||
8 | #include "tracker_frame.h" | ||
9 | |||
10 | class TrackerApp : public wxApp { | ||
11 | public: | ||
12 | virtual bool OnInit() { | ||
13 | GetTrackerConfig().Load(); | ||
14 | |||
15 | TrackerFrame *frame = new TrackerFrame(); | ||
16 | frame->Show(true); | ||
17 | return true; | ||
18 | } | ||
19 | }; | ||
20 | |||
21 | wxIMPLEMENT_APP(TrackerApp); | ||