QuicMaf/QuicMafGui/qmgui.cpp

18 lines
254 B
C++

#include <wx/wx.h>
#include "Dashboard.h"
class MyApp : public wxApp {
public:
virtual bool OnInit();
};
bool MyApp::OnInit() {
LOG* log = new LOG();
Dashboard *dash = new Dashboard(log);
dash->Show(true);
return true;
}
wxIMPLEMENT_APP(MyApp);