windows-nt/Source/XPSP1/NT/base/cluster/admin/cluadmin/clusitem.inl

56 lines
1.3 KiB
Plaintext
Raw Normal View History

2020-09-26 03:20:57 -05:00
/////////////////////////////////////////////////////////////////////////////
//
// 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_