18 lines
287 B
C
18 lines
287 B
C
|
#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
|