Mercurial > mercurial > hgweb_searcher2.cgi
view include/main.h @ 15:168531d2c45f
Added tag v210 for changeset 5ce7757b4350
| author | pyon@macmini |
|---|---|
| date | Fri, 01 Jul 2011 20:13:49 +0900 |
| parents | c174ac668e9f |
| children |
line wrap: on
line source
// Filename : main.h // Last Change: 08-Mar-2011. // #include "wx/wx.h" #include "wx/config.h" #include "wx/fileconf.h" #include "symbol.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(); void ConfInit(); wxFileConfig *config; wxString conf_file; wxRect rect; wxString rootdir; wxArrayString searchhist; }; DECLARE_APP(MyApp)
