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

📄 exposedobject.h

📁 深入剖析Visual C++编程技术及应用实例
💻 H
字号:
// 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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -