exposedobject.h

来自「一个很不错的Script解释器」· C头文件 代码 · 共 29 行

H
29
字号
// ExposedObject.h: interface for the EEExposedObject class.
//
//////////////////////////////////////////////////////////////////////

#if !defined(AFX_EXPOSEDOBJECT_H__0169D898_1CD0_11D3_A57C_00A0C9750ADE__INCLUDED_)
#define AFX_EXPOSEDOBJECT_H__0169D898_1CD0_11D3_A57C_00A0C9750ADE__INCLUDED_

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

class ExposedObject  
{
public:
	ExposedObject();
	virtual ~ExposedObject();

	CString GetObjectName();
	void SetObjectName(CString newName);
	IUnknown* GetObjectInterface();
	void SetExposedObject(IUnknown* newExposedObject);

private:
	IUnknown* m_pExposedObject;
	CString m_ObjectName;
};

#endif // !defined(AFX_EXPOSEDOBJECT_H__0169D898_1CD0_11D3_A57C_00A0C9750ADE__INCLUDED_)

⌨️ 快捷键说明

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