22 lines
292 B
C
22 lines
292 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
|