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.
|
|
//////////////////////////////////////////////////////////////////////////////
/*++
Copyright (C) Microsoft Corporation
Module Name:
IASAttributeInfo.h
Abstract:
Declaration of the CAttributeInfo class.
This class is the C++ implementation of the IIASAttributeInfo interface on the AttributeInfo COM object.
See IASAttributeInfo.cpp for implementation.
Revision History: mmaguire 06/25/98 - created
--*/ //////////////////////////////////////////////////////////////////////////////
#if !defined(_SCHEMA_ATTRIBUTE_H_)
#define _SCHEMA_ATTRIBUTE_H_
#pragma once
//////////////////////////////////////////////////////////////////////////////
// BEGIN INCLUDES
//
// where we can find what this class derives from:
//
#include "IASBaseAttributeInfo.h"
//
// where we can find what this class has or uses:
//
//
// END INCLUDES
//////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////
// CAttributeInfo
class ATL_NO_VTABLE CAttributeInfo : public CComObjectRootEx<CComSingleThreadModel>, public CComCoClass<CAttributeInfo, &CLSID_IASAttributeInfo>, // Already in CBaseAttributeInfo: public IDispatchImpl<IIASAttributeInfo, &IID_IIASAttributeInfo, &LIBID_NAPMMCLib>
public CBaseAttributeInfo { public:
DECLARE_NO_REGISTRY()
BEGIN_COM_MAP(CAttributeInfo) COM_INTERFACE_ENTRY(IIASAttributeInfo) COM_INTERFACE_ENTRY(IDispatch) END_COM_MAP()
};
#endif // _SCHEMA_ATTRIBUTE_H_
|