radio_plus_plus/window.cpp

24 lines
232 B
C++
Raw Normal View History

2022-11-24 00:56:35 +01:00
#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;
}