23 lines
490 B
C
23 lines
490 B
C
|
|
/**
|
||
|
|
* @file CommWXWidgetsApp.h
|
||
|
|
* @author itas109 (itas109@qq.com) \n\n
|
||
|
|
* Blog : https://blog.csdn.net/itas109 \n
|
||
|
|
* Github : https://github.com/itas109 \n
|
||
|
|
* Gitee : https://gitee.com/itas109 \n
|
||
|
|
* QQ Group : 129518033
|
||
|
|
* @brief Defines Application Class (CodeBlocks 20.03 wxWidgets 3.1.7)
|
||
|
|
*/
|
||
|
|
|
||
|
|
#ifndef COMMWXWIDGETSAPP_H
|
||
|
|
#define COMMWXWIDGETSAPP_H
|
||
|
|
|
||
|
|
#include <wx/app.h>
|
||
|
|
|
||
|
|
class CommWXWidgetsApp : public wxApp
|
||
|
|
{
|
||
|
|
public:
|
||
|
|
virtual bool OnInit();
|
||
|
|
};
|
||
|
|
|
||
|
|
#endif // COMMWXWIDGETSAPP_H
|