19 lines
254 B
C
19 lines
254 B
C
|
#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
|