FLImaging 6.5.8.1
GUIPropertyItemIPAddress.h
1#pragma once
2#include "GUIPropertyItemBase.h"
3
4namespace FLImaging
5{
6 namespace GUI
7 {
8 class FL_EXPORT CGUIPropertyItemIPAddress : public CGUIPropertyItemBase
9 {
10 public:
11 CGUIPropertyItemIPAddress();
12 virtual ~CGUIPropertyItemIPAddress();
13
14 virtual CMFCPropertyGridProperty* CreateGridProperty() override;
15
16 virtual bool SetValue(Base::CFLString<wchar_t> strValue, bool bInvokeCallback = true) override;
17 virtual Base::CFLString<wchar_t> GetValue() const override;
18
19 virtual void Enable(bool bEnable) override;
20 };
21 }
22}
23