15 lines
291 B
C++
15 lines
291 B
C++
|
#include "mainframe.h"
|
||
|
|
||
|
class ParamMatchCntApp : public wxApp
|
||
|
{
|
||
|
public:
|
||
|
virtual bool OnInit()
|
||
|
{
|
||
|
MainFrame* frame = new MainFrame(wxT("ParamMatchCnt"));
|
||
|
frame->Show(true);
|
||
|
return true;
|
||
|
}
|
||
|
};
|
||
|
|
||
|
wxIMPLEMENT_APP(ParamMatchCntApp);
|
||
|
DECLARE_APP(ParamMatchCntApp);
|