#include "window.h" #include "main.h" wxIMPLEMENT_APP(cWindow); cWindow::cWindow() { } cWindow::~cWindow() { } // GUI Init bool cWindow::OnInit() { m_frame1 = new cFrame(); m_frame1->Show(true); return true; }