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

📄 atsparam.h

📁 在你的程序中实现脚本功能,该脚本引擎名为AtScript , 是类似于VBScript 的语法, 在一些比VBScript 更好用,更方便,性能更高,而且容易扩展,无需组件环境,
💻 H
字号:
// AtsParam.h: interface for the CAtsParam class.
//
//////////////////////////////////////////////////////////////////////

#if !defined(AFX_ATSPARAM_H__2C044C18_1E34_481B_9D5B_50692C437EF7__INCLUDED_)
#define AFX_ATSPARAM_H__2C044C18_1E34_481B_9D5B_50692C437EF7__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000

class CAtsEngine;

#include "AtsDef.h"
#include "AtsValue.h"

class ATS_API CAtsParam  
{
public:
	CAtsParam();
	virtual ~CAtsParam();

	void	DetachList();
	BOOL	IsEmpty();
	BOOL	LoadParamData( CAtsString strParams );
	int		DataCmp( CAtsString strData1, CAtsString strData2 );
	LPCTSTR	GetItemData( int nIndex , BOOL bFace = false);
	void	SetReturnData( LPCTSTR sData );
	void	SetReturnData( int     nData );
	void	AddItemToHead( CAtsValue *pValue );
	void	SetOutData( int nIndex,  LPCTSTR sData );
	void	SetOutData( int nIndex,  long nData );
	BOOL	SetParamInfo( CAtsString strParamInfo );
	CAtsParam::operator = ( const CAtsParam &Item );

	CAtsEngine				*m_pEng;
	CObList					m_listParam;	//变量对象链表: CAtsVarItem
	CAtsValue				m_vReturn;
};

#endif // !defined(AFX_ATSPARAM_H__2C044C18_1E34_481B_9D5B_50692C437EF7__INCLUDED_)

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -