1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
#ifndef WXAPP_HPP_ #define WXAPP_HPP_ #include "wxmain.hpp" #include <wx/app.h> class MainApp : public wxApp { public: virtual bool OnInit() final { auto mainFrame = new MainFrame; mainFrame->Show(true); SetTopWindow(mainFrame); return true; } }; #endif // WXAPP_HPP_