📄 i_parameterlist.h
字号:
//I_ParameterList.h
#ifndef _I_ParameterList_
#define _I_ParameterList_
//#include "BaseSupport.h"
class IParameterList;
#include <string>
enum { INVALID_DATA = -1, };
class IParameterList;
class IParameterList
{
public:
virtual const char* GetParamValueText(const char* pszName)=0;
virtual LONG GetParamValueLONG(const char* pszName)=0;
virtual ULONG GetParamValueULONG(const char* pszName)=0;
virtual void SetParamValueText(const char* pszName,const char*pszValue)=0;
virtual void SetParamValueLONG(const char* pszName,LONG lValue)=0;
virtual void SetParamValueULONG(const char* pszName,ULONG ulValue)=0;
virtual ULONG GetParamCount()=0;
virtual void GetAllParamAsText(
std::string& strAllTxt,
const char* pszTokenBetweenParams=" ;",
const bool bGetType=false
)=0;
virtual void GetParamValueAsText(
const ULONG ulIndex,
std::string& strName,
std::string& strType,
std::string& strValue
)=0;
virtual void CopyFromParameterList(IParameterList* pIParameterList)=0;
};
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -