56 lines
1.3 KiB
C++
56 lines
1.3 KiB
C++
/////////////////////////////////////////////////////////////////////////////
|
|
//
|
|
// Copyright (c) 1996 Microsoft Corporation
|
|
//
|
|
// Module Name:
|
|
// ClusItem.inl
|
|
//
|
|
// Abstract:
|
|
// Inline function implementations for the CClusterItem class.
|
|
//
|
|
// Author:
|
|
// David Potter (davidp) May 9, 1996
|
|
//
|
|
// Revision History:
|
|
//
|
|
// Notes:
|
|
//
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
#ifndef _CLUSITEM_INL_
|
|
#define _CLUSITEM_INL_
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
// Include Files
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
#ifndef _CLUSITEM_H_
|
|
#include "ClusItem.h" // for CClusterItem
|
|
#endif
|
|
|
|
#ifndef _CLUSDOC_H_
|
|
#include "ClusDoc.h" // for CClusterDoc
|
|
#endif
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
// Inline Function Definitions
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
inline HCLUSTER CClusterItem::Hcluster(void) const
|
|
{
|
|
ASSERT_VALID(Pdoc());
|
|
return Pdoc()->Hcluster();
|
|
|
|
} //*** CClusterItem::Hcluster()
|
|
|
|
inline HKEY CClusterItem::HkeyCluster(void) const
|
|
{
|
|
ASSERT_VALID(Pdoc());
|
|
return Pdoc()->HkeyCluster();
|
|
|
|
} //*** CClusterItem::HkeyCluster()
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
#endif // _CLUSITEM_INL_
|