13 lines
137 B
C++
13 lines
137 B
C++
#ifndef APP_H_
|
|
#define APP_H_
|
|
|
|
#include "wxw.h"
|
|
|
|
class MyApp : public wxApp
|
|
{
|
|
public:
|
|
virtual bool OnInit() override;
|
|
};
|
|
|
|
#endif
|