#ifndef BASEMAIN_H
#define BASEMAIN_H
#include <wx/wx.h>
class CBasePanel : public wxPanel
{
public:
CBasePanel(wxWindow* parent, wxWindowID id, const wxPoint& pos, const wxSize& size, long style, const wxString& name);
private:
void Init();
protected:
wxTextCtrl* edIp_{};
wxTextCtrl* edPort_{};
};
#endif // BASEMAIN_H