/***************************************************************
 * Name:      MyApp.h
 * Purpose:   Defines MyApp Class
 * Author:    PingGe (414236069@qq.com)
 * Created:   2013-10-19
 * Copyright: PingGe (http://www.cnblogs.com/pingge/)
 * License:
 **************************************************************/

#ifndef MYAPP_H_
#define MYAPP_H_

//(*Headers(MyApp)
#include <wx/app.h>
//*)

class MyApp : public wxApp
{
public:
    virtual bool OnInit();
};
DECLARE_APP(MyApp)

#endif  // MYAPP_H_
View Code

相关文章:

  • 2021-07-14
  • 2021-10-04
  • 2021-11-18
  • 2022-01-07
  • 2021-11-29
  • 2021-09-11
  • 2021-07-16
  • 2021-11-22
猜你喜欢
  • 2021-06-21
  • 2021-09-30
  • 2022-12-23
  • 2022-12-23
  • 2021-07-10
  • 2022-12-23
  • 2022-01-07
相关资源
相似解决方案