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