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.

dialogapp.h 179B

1234567891011121314
  1. #ifndef DIALOGAPP_H
  2. #define DIALOGAPP_H
  3. #include <wx/app.h>
  4. class dialogapp : public wxApp
  5. {
  6. public:
  7. virtual bool OnInit();
  8. };
  9. //wxDECLARE_APP(dialogapp);
  10. #endif