/*************************************************************** * Name: wxGuitarApp.cpp * Purpose: Code for Application Class * Author: Ivnish (INDT) (indt@mail.ru) * Created: 2009-07-21 * Copyright: (c) 2009 Ivnish (INDT) * License: GPLv3 **************************************************************/ #include "wxGuitarApp.h" //(*AppHeaders #include "wxGuitarMain.h" #include //*) IMPLEMENT_APP(wxGuitarApp); bool wxGuitarApp::OnInit() { //(*AppInitialize bool wxsOK = true; wxInitAllImageHandlers(); if ( wxsOK ) { wxGuitarFrame* Frame = new wxGuitarFrame(0); Frame->Show(); SetTopWindow(Frame); } //*) return wxsOK; }