forked from cheng/wallet
5238cda077
Also, needed to understand Byzantine fault tolerant paxos better. Still do not.
21 lines
275 B
C++
21 lines
275 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);
|