Mercurial > mercurial > hgweb_kaigo.hg.cgi
annotate Porori/include/main.h @ 5:519d6fd0bfd9 draft
searcher: bug fix. fcgo: new feature.
| author | pyon <pyon@macmini> |
|---|---|
| date | Tue, 15 Jun 2021 18:32:28 +0900 |
| parents | aaaa401818a1 |
| children |
| rev | line source |
|---|---|
| 0 | 1 // Filename : main.h |
| 2 // Last Change: 2016-12-01 –Ø 18:02:02. | |
| 3 // | |
| 4 #include <wx/wx.h> | |
| 5 | |
| 6 // private classes | |
| 7 // Define a new application type, each program should derive a class from wxApp | |
| 8 class MyApp : public wxApp | |
| 9 { | |
| 10 DECLARE_CLASS( MyApp ) | |
| 11 public: | |
| 12 MyApp(); | |
| 13 ~MyApp(); | |
| 14 | |
| 15 virtual bool OnInit(); | |
| 16 virtual int OnExit(); | |
| 17 }; | |
| 18 | |
| 19 DECLARE_APP(MyApp) | |
| 20 |
