#ifndef SIMPLETEXTLOG_H #define SIMPLETEXTLOG_H #include "settings.h" #include "messagelog.h" // inheriting class's header file #include /* * No description */ class DLLIMPORT SimpleTextLog : public MessageLog { public: // class constructor SimpleTextLog(wxNotebook* parent, const wxString& title); // class destructor ~SimpleTextLog(); virtual void AddLog(const wxString& msg, bool addNewLine = true); wxTextCtrl* GetTextControl(){ return m_Text; } private: wxTextCtrl* m_Text; }; #endif // SIMPLETEXTLOG_H