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