MyAsd.h
上传用户:weisheen
上传日期:2022-07-09
资源大小:19390k
文件大小:1k
- // MyAsd.h : Declaration of the CMyAsd
- #ifndef __MYASD_H_
- #define __MYASD_H_
- #include "resource.h" // main symbols
- /////////////////////////////////////////////////////////////////////////////
- // CMyAsd
- class ATL_NO_VTABLE CMyAsd :
- public CComObjectRootEx<CComSingleThreadModel>,
- public CComCoClass<CMyAsd, &CLSID_MyAsd>,
- public IDispatchImpl<IMyAsd, &IID_IMyAsd, &LIBID_AUTODEMOLib>
- {
- public:
- CMyAsd()
- {
- }
- DECLARE_REGISTRY_RESOURCEID(IDR_MYASD)
- DECLARE_PROTECT_FINAL_CONSTRUCT()
- BEGIN_COM_MAP(CMyAsd)
- COM_INTERFACE_ENTRY(IMyAsd)
- COM_INTERFACE_ENTRY(IDispatch)
- END_COM_MAP()
- // IMyAsd
- public:
- };
- #endif //__MYASD_H_