14 lines
216 B
C++
14 lines
216 B
C++
#include "mainframe.h"
|
|
|
|
MainFrame::MainFrame(const wxString& title) : wxFrame(NULL, wxID_ANY, title, wxDefaultPosition, wxSize(800, 600))
|
|
{
|
|
}
|
|
|
|
MainFrame::~MainFrame()
|
|
{
|
|
}
|
|
|
|
bool MainFrame::Init()
|
|
{
|
|
return false;
|
|
} |