選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

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