-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathIEnumFeature.h
50 lines (44 loc) · 1.5 KB
/
IEnumFeature.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
//------------------------------------------------------------------------
/**
\file IEnumFeature.h
\brief Definition of interface IEnumFeature
\Date 2016-8-09
\Version 1.1.1608.9091
*/
//------------------------------------------------------------------------
#pragma once
#include "GXStringCPP.h"
#include "GXStringVector.h"
#include "GXIAPIBase.h"
#include "GXSmartPtr.h"
class GXIAPICPP_API IEnumFeature
{
public:
//---------------------------------------------------------
/**
\brief Destructor
*/
//---------------------------------------------------------
virtual ~IEnumFeature(){};
//---------------------------------------------------------
/**
\brief Get list of symbolic Values
*/
//---------------------------------------------------------
virtual GxIAPICPP::gxstring_vector GetEnumEntryList() = 0;
//---------------------------------------------------------
/**
\brief Get the current value of the enum feature
*/
//---------------------------------------------------------
virtual GxIAPICPP::gxstring GetValue() = 0;
//---------------------------------------------------------
/**
\brief Set the current value of the enum feature
\param [in]strValue the value write
*/
//---------------------------------------------------------
virtual void SetValue(const GxIAPICPP::gxstring& strValue) = 0;
};
template class GXIAPICPP_API GXSmartPtr<IEnumFeature>;
typedef GXSmartPtr<IEnumFeature> CEnumFeaturePointer;