#include #include "wxcputhrottle.h" #include "wxcputhrottleframe.h" IMPLEMENT_APP(wxCpuThrottleapp) bool wxCpuThrottleapp::OnInit() { wxCpuThrottleFrame *frame = new wxCpuThrottleFrame( wxT( "Hello World" ), wxPoint(50,50), wxSize(450,340) ); frame->Show(false); SetTopWindow(frame); return TRUE; }