Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

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