?? exposedobject.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 + -