-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.cpp
44 lines (37 loc) · 1.55 KB
/
main.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
/********************************************************************************
* project Tracker statuses *
* *
* file main.cpp *
* author Dmitriy Bassamykin *
* date 12.12.2019 *
* copyright The MIT License (MIT). Copyright (c) 2019 Dmitriy Bassamykin *
* *
********************************************************************************/
// -*- C++ -*-
//
// generated by wxGlade 0.9.4 on Mon Feb 24 12:39:18 2020
//
// Example for compiling a single file project under Linux using g++:
// g++ MyApp.cpp $(wx-config --libs) $(wx-config --cxxflags) -o MyApp
//
// Example for compiling a multi file project under Linux using g++:
// g++ main.cpp $(wx-config --libs) $(wx-config --cxxflags) -o MyApp Dialog1.cpp Frame1.cpp
//
// This is an automatically generated file.
// Manual changes will be overwritten without warning!
#include <wx/wx.h>
#include <wx/image.h>
#include "MainWindow.h"
class TrackerStatuses: public wxApp {
public:
bool OnInit();
};
IMPLEMENT_APP(TrackerStatuses)
bool TrackerStatuses::OnInit()
{
wxInitAllImageHandlers();
MainWindow* frame = new MainWindow(NULL, wxID_ANY, wxEmptyString);
SetTopWindow(frame);
frame->Show();
return true;
}