QuicMaf/QuicMafGui/qmgui.cpp
Ayham Mamoun b76971ad82 Version 2 Release!
- Added GUI
- Added Evaluation
- Added Recursive brackets support
- Added Two way evaluation
- Added ExprTreeReveresed
- Fixed bracket matching
- Fixed Log
- Fixed Error Reporting
2019-03-23 13:46:21 +03:00

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);