⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 i_parameterlist.h

📁 SQLBig5BugTool 宽字符操作问题
💻 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 + -