2025-04-17 20:10:00 +08:00
|
|
|
#include "mainframe.h"
|
|
|
|
|
|
|
|
class ParamMatchCntApp : public wxApp
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
virtual bool OnInit()
|
|
|
|
{
|
|
|
|
MainFrame* frame = new MainFrame(wxT("ParamMatchCnt"));
|
2025-04-17 21:03:35 +08:00
|
|
|
if (!frame->Init()) {
|
|
|
|
return false;
|
|
|
|
}
|
2025-04-17 20:10:00 +08:00
|
|
|
frame->Show(true);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
wxIMPLEMENT_APP(ParamMatchCntApp);
|
|
|
|
DECLARE_APP(ParamMatchCntApp);
|