#include #include"frame.h" struct App : wxApp { virtual bool OnInit() { (new Frame())->Show(true); return true; } }; wxIMPLEMENT_APP(App);