Mercurial > mercurial > hgweb_golang.cgi
view src/kaigo/horori/alloc/main.cpp @ 64:ad5c30ee5cf1
horori: add manual.
author | pyon@macmini |
---|---|
date | Fri, 25 Dec 2020 20:48:01 +0900 |
parents | 20b42e2deae1 |
children | 0369656be06c |
line wrap: on
line source
// Filename : main.cpp // Last Change: 2020-03-17 火 16:05:54. // #include "main.h" #include "alloc.h" IMPLEMENT_APP(MyApp) IMPLEMENT_CLASS(MyApp, wxApp) MyApp::MyApp() { } MyApp::~MyApp() { } bool MyApp::OnInit() { if (!wxApp::OnInit()) return false; AllocFrame *frame = new AllocFrame(NULL, wxID_ANY, wxT("ALLOC"), wxDefaultPosition, wxSize(420, 180), wxCAPTION|wxCLOSE_BOX); frame->Show(true); frame->Raise(); return true; } int MyApp::OnExit() { return 0; }