Mercurial > mercurial > hgweb_porori.cgi
diff Porori/include/main.h @ 0:2b4fc52a96d9
porori.
author | pyon@macmini |
---|---|
date | Wed, 12 Feb 2020 18:57:24 +0900 |
parents | |
children |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/Porori/include/main.h Wed Feb 12 18:57:24 2020 +0900 @@ -0,0 +1,20 @@ +// Filename : main.h +// Last Change: 2016-12-01 –Ø 18:02:02. +// +#include <wx/wx.h> + +// private classes +// Define a new application type, each program should derive a class from wxApp +class MyApp : public wxApp +{ + DECLARE_CLASS( MyApp ) +public: + MyApp(); + ~MyApp(); + + virtual bool OnInit(); + virtual int OnExit(); +}; + +DECLARE_APP(MyApp) +