Tyro/src/DocFrame.h

21 lines
309 B
C++

#ifndef TYRODOC_FRAME_H
#define TYRODOC_FRAME_H
#ifndef WX_PRECOMP
#include <wx/wx.h>
#endif
#include <wx/stc/stc.h>
class DocFrame: public wxWindow
{
public:
DocFrame(wxWindow *parent, wxWindowID id);
~DocFrame();
private:
wxStyledTextCtrl *editor;
DECLARE_EVENT_TABLE()
};
#endif // TYRODOC_FRAM_H