gtransm/gui/design/basepanel.h

19 lines
254 B
C
Raw Normal View History

2025-04-02 10:36:48 +08:00
#ifndef BASEMAIN_H
#define BASEMAIN_H
#include <wx/wx.h>
class CBasePanel : public wxPanel
{
public:
CBasePanel(wxWindow* parent);
private:
void Init();
protected:
wxTextCtrl* edIp_{};
wxTextCtrl* edPort_{};
};
#endif // BASEMAIN_H