wallet/docs/libraries/app.cpp

22 lines
276 B
C++

#include "stdafx.h"
app::app()
{
}
app::~app()
{
}
bool app::OnInit()
{
wxFrame* mainFrame = new wxFrame(nullptr, wxID_ANY, L"Hello World … °C");
//wxFrame* mainFrame = new wxFrame(nullptr, wxID_ANY, wcp);
mainFrame->Show(true);
return true;
}
wxIMPLEMENT_APP(app);