The Meson Build System
http://mesonbuild.com/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
395 B
24 lines
395 B
10 years ago
|
#pragma once
|
||
|
|
||
|
#include <wx/wx.h>
|
||
|
|
||
|
class MyApp: public wxApp
|
||
|
{
|
||
|
public:
|
||
|
virtual bool OnInit();
|
||
|
};
|
||
|
class MyFrame: public wxFrame
|
||
|
{
|
||
|
public:
|
||
|
MyFrame(const wxString& title, const wxPoint& pos, const wxSize& size);
|
||
|
private:
|
||
|
void OnHello(wxCommandEvent& event);
|
||
|
void OnExit(wxCommandEvent& event);
|
||
|
void OnAbout(wxCommandEvent& event);
|
||
|
wxDECLARE_EVENT_TABLE();
|
||
|
};
|
||
|
|
||
|
enum {
|
||
|
ID_Hello = 1
|
||
|
};
|