-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathICommandFeature.h
34 lines (30 loc) · 931 Bytes
/
ICommandFeature.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
//------------------------------------------------------------------------
/**
\file ICommandFeature.h
\brief Definition of ICommand interface
\Date 2016-8-09
\Version 1.1.1608.9091
*/
//------------------------------------------------------------------------
#pragma once
#include "GXIAPIBase.h"
#include "GXSmartPtr.h"
class GXIAPICPP_API ICommandFeature
{
public:
//---------------------------------------------------------
/**
\brief Destructor
*/
//---------------------------------------------------------
virtual ~ICommandFeature(){};
//---------------------------------------------------------
/**
\brief Execute the command
\return void
*/
//---------------------------------------------------------
virtual void Execute() = 0;
};
template class GXIAPICPP_API GXSmartPtr<ICommandFeature>;
typedef GXSmartPtr<ICommandFeature> CCommandFeaturePointer;