Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

65 lines
1.6 KiB

  1. //////////////////////////////////////////////////////////////////////////////
  2. /*++
  3. Copyright (C) Microsoft Corporation
  4. Module Name:
  5. IASAttributeInfo.h
  6. Abstract:
  7. Declaration of the CAttributeInfo class.
  8. This class is the C++ implementation of the IIASAttributeInfo interface on
  9. the AttributeInfo COM object.
  10. See IASAttributeInfo.cpp for implementation.
  11. Revision History:
  12. mmaguire 06/25/98 - created
  13. --*/
  14. //////////////////////////////////////////////////////////////////////////////
  15. #if !defined(_SCHEMA_ATTRIBUTE_H_)
  16. #define _SCHEMA_ATTRIBUTE_H_
  17. #pragma once
  18. //////////////////////////////////////////////////////////////////////////////
  19. // BEGIN INCLUDES
  20. //
  21. // where we can find what this class derives from:
  22. //
  23. #include "IASBaseAttributeInfo.h"
  24. //
  25. // where we can find what this class has or uses:
  26. //
  27. //
  28. // END INCLUDES
  29. //////////////////////////////////////////////////////////////////////////////
  30. /////////////////////////////////////////////////////////////////////////////
  31. // CAttributeInfo
  32. class ATL_NO_VTABLE CAttributeInfo :
  33. public CComObjectRootEx<CComSingleThreadModel>,
  34. public CComCoClass<CAttributeInfo, &CLSID_IASAttributeInfo>,
  35. // Already in CBaseAttributeInfo: public IDispatchImpl<IIASAttributeInfo, &IID_IIASAttributeInfo, &LIBID_NAPMMCLib>
  36. public CBaseAttributeInfo
  37. {
  38. public:
  39. DECLARE_NO_REGISTRY()
  40. BEGIN_COM_MAP(CAttributeInfo)
  41. COM_INTERFACE_ENTRY(IIASAttributeInfo)
  42. COM_INTERFACE_ENTRY(IDispatch)
  43. END_COM_MAP()
  44. };
  45. #endif // _SCHEMA_ATTRIBUTE_H_