19 lines
228 B
C++
19 lines
228 B
C++
#ifndef MAINFRAME_H
|
|
#define MAINFRAME_H
|
|
|
|
#include <wx/wx.h>
|
|
|
|
class MainFrame : public wxFrame
|
|
{
|
|
public:
|
|
MainFrame(const wxString& title);
|
|
~MainFrame();
|
|
|
|
public:
|
|
bool Init();
|
|
|
|
private:
|
|
|
|
};
|
|
|
|
#endif // MAINFRAME_H
|