MINOBJ.H
上传用户:bangxh
上传日期:2007-01-31
资源大小:42235k
文件大小:1k
源码类别:

Windows编程

开发平台:

Visual C++

  1. // MinObj.h : Declaration of the CMinObj
  2. //
  3. // This is a part of the Active Template Library.
  4. // Copyright (C) 1996-1998 Microsoft Corporation
  5. // All rights reserved.
  6. //
  7. // This source code is only intended as a supplement to the
  8. // Active Template Library Reference and related
  9. // electronic documentation provided with the library.
  10. // See these sources for detailed information regarding the
  11. // Active Template Library product.
  12. ////////////////////////////////////////////////////////////////////////////
  13. // minimal
  14. class CMinObj :
  15. public IMinObj,
  16. public CComObjectRoot,
  17. public CComCoClass<CMinObj,&CLSID_CMinObj>
  18. {
  19. public:
  20. CMinObj() {}
  21. BEGIN_COM_MAP(CMinObj)
  22. COM_INTERFACE_ENTRY(IMinObj)
  23. END_COM_MAP()
  24. // making not aggregatable reduces size
  25. DECLARE_NOT_AGGREGATABLE(CMinObj)
  26. // with this macro you can put the object in the object map evan though
  27. // it does not have any self registration capabilities (in our case we
  28. // use an external REG file.
  29. DECLARE_NO_REGISTRY()
  30. // IMinObj
  31. public:
  32. STDMETHOD(Hello)();
  33. };