2024-08-06 09:07:21 +08:00
|
|
|
//
|
|
|
|
// Created by sinxm on 24-8-5.
|
|
|
|
//
|
|
|
|
|
|
|
|
#ifndef MAINWIDGET_H
|
|
|
|
#define MAINWIDGET_H
|
|
|
|
|
|
|
|
#include "MainPanel.h"
|
|
|
|
|
|
|
|
class CMainFrame : public wxFrame
|
|
|
|
{
|
|
|
|
private:
|
|
|
|
CMainPanel* panel_{};
|
2024-10-23 16:56:38 +08:00
|
|
|
|
2024-08-06 09:07:21 +08:00
|
|
|
public:
|
|
|
|
explicit CMainFrame(const wxString& title);
|
|
|
|
|
|
|
|
public:
|
|
|
|
void InitFrame();
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // MAINWIDGET_H
|