Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /***************************************************************
- * Name: RobotCGenApp.cpp
- * Purpose: Code for Application Class
- * Author: Jeff Goldman
- * Created: 2013-07-08
- * Copyright: Jeff Goldman ()
- * License:
- **************************************************************/
- #include "RobotCGenApp.h"
- //(*AppHeaders
- #include "RobotCGenMain.h"
- #include <wx/image.h>
- //*)
- #include <wx/textdlg.h>
- IMPLEMENT_APP(RobotCGenApp);
- bool RobotCGenApp::OnInit()
- {
- setup();
- //(*AppInitialize
- bool wxsOK = true;
- wxInitAllImageHandlers();
- if(wxsOK)
- {
- create();
- }
- //*)
- return wxsOK;
- }
- void RobotCGenApp::create(){
- RobotCGenFrame* Frame = new RobotCGenFrame(0);
- Frame->Show();
- SetTopWindow(Frame);
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement