12 lines
163 B
C
12 lines
163 B
C
|
#ifndef MAINFRAME_H
|
||
|
#define MAINFRAME_H
|
||
|
|
||
|
#include <wx/wx.h>
|
||
|
|
||
|
class CMainFrame : public wxFrame
|
||
|
{
|
||
|
public:
|
||
|
explicit CMainFrame(const wxString& title);
|
||
|
};
|
||
|
|
||
|
#endif
|