Power System Platform  2026w10a-beta
Loading...
Searching...
No Matches
DebugMainFrame.hpp
1#ifndef DEBUGMAINFRAME_HPP
2#define DEBUGMAINFRAME_HPP
3#include "DebugFrameBase.hpp"
4
6{
7public:
8 DebugMainFrame(wxWindow* parent);
9 virtual ~DebugMainFrame();
10
11 void ClearDebugMessage() { m_richTextCtrlDebugText->Clear(); }
12 void AppendDebugMessage(wxString message) { m_richTextCtrlDebugText->AppendText(message); }
13};
14#endif // DEBUGMAINFRAME_HPP