Sophie

Sophie

distrib > Mandriva > 2010.0 > i586 > media > contrib-release > by-pkgid > 5a0da152583bb6c4f5ad0609b41dde4c > files > 562

codeblocks-8.02-2mdv2009.0.i586.rpm

#ifndef MAIN_H
#define MAIN_H

#include "app.h"

class MyFrame: public wxFrame
{
	public:
		MyFrame(wxFrame *frame, const wxString& title);
		~MyFrame();
	private:
		void OnQuit(wxCommandEvent& event);
		void OnAbout(wxCommandEvent& event);
		DECLARE_EVENT_TABLE();
};

#endif // MAIN_H