23 lines
293 B
C++
23 lines
293 B
C++
//
|
|
// Created by sinxm on 24-8-5.
|
|
//
|
|
|
|
#ifndef MAINWIDGET_H
|
|
#define MAINWIDGET_H
|
|
|
|
#include "MainPanel.h"
|
|
|
|
class CMainFrame : public wxFrame
|
|
{
|
|
private:
|
|
CMainPanel* panel_{};
|
|
|
|
public:
|
|
explicit CMainFrame(const wxString& title);
|
|
|
|
public:
|
|
void InitFrame();
|
|
};
|
|
|
|
#endif // MAINWIDGET_H
|