-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathIBoolFeature.h
43 lines (38 loc) · 1.17 KB
/
IBoolFeature.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
//------------------------------------------------------------------------
/**
\file IBoolFeature.h
\brief Definition of interface IBoolFeature
\Date 2016-8-09
\Version 1.1.1608.9091
*/
//------------------------------------------------------------------------
#pragma once
#include "GXIAPIBase.h"
#include "GXSmartPtr.h"
class GXIAPICPP_API IBoolFeature
{
public:
//---------------------------------------------------------
/**
\brief Destructor
*/
//---------------------------------------------------------
virtual ~IBoolFeature(){};
//---------------------------------------------------------
/**
\brief Get node value
\return The value read
*/
//---------------------------------------------------------
virtual bool GetValue() = 0;
//---------------------------------------------------------
/**
\brief Set node value
\param bValue[in] The value to set
\return void
*/
//---------------------------------------------------------
virtual void SetValue(bool bValue) = 0;
};
template class GXIAPICPP_API GXSmartPtr<IBoolFeature>;
typedef GXSmartPtr<IBoolFeature> CBoolFeaturePointer;