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