12 lines
156 B
C++
12 lines
156 B
C++
#include<wx/wx.h>
|
|
|
|
#include"frame.h"
|
|
|
|
struct App : wxApp {
|
|
virtual bool OnInit() {
|
|
(new Frame())->Show(true);
|
|
return true;
|
|
}
|
|
};
|
|
|
|
wxIMPLEMENT_APP(App); |