Mercurial > mercurial > hgweb_madnm.cgi
view include/main.h @ 2:45d4fd954c31 default tip
change layout.
author | pyon@macmini |
---|---|
date | Mon, 10 Jun 2019 22:17:33 +0900 |
parents | 2f5584f0d127 |
children |
line wrap: on
line source
// Filename : main.h // Last Change: 2019-06-05 12:37:13. // #pragma once #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 ) private: public: MyApp(); ~MyApp(); virtual bool OnInit(); virtual int OnExit(); }; DECLARE_APP( MyApp )