13 lines
171 B
C++
13 lines
171 B
C++
#ifndef MAINFRAME_H
|
|
#define MAINFRAME_H
|
|
|
|
#include <wx/wx.h>
|
|
#include "design/basepanel.h"
|
|
|
|
class CMainFrame : public wxApp
|
|
{
|
|
public:
|
|
bool OnInit() override;
|
|
};
|
|
|
|
#endif |