wallet/docs/libraries/app.cpp
reaction.la 5238cda077
cleanup, and just do not like pdfs
Also, needed to understand Byzantine fault tolerant paxos better.

Still do not.
2022-02-20 18:26:44 +10:00

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);