windows-nt/Source/XPSP1/NT/base/cluster/admin/cluadmin/treeitem.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:
// TreeItem.inl
//
// Abstract:
// Inline function implementations for the CTreeItem class.
//
// Author:
// David Potter (davidp) May 3, 1996
//
// Revision History:
//
// Notes:
//
/////////////////////////////////////////////////////////////////////////////
#ifndef _TREEITEM_INL_
#define _TREEITEM_INL_
/////////////////////////////////////////////////////////////////////////////
// Include Files
/////////////////////////////////////////////////////////////////////////////
#ifndef _TREEITEM_H_
#include "TreeItem.h" // for CTreeItem
#endif
#ifndef _CLUSITEM_H_
#include "ClusItem.h" // for CClusterItem
#endif
/////////////////////////////////////////////////////////////////////////////
// Inline Function Definitions
/////////////////////////////////////////////////////////////////////////////
inline CMenu * CTreeItem::PmenuPopup(void)
{
ASSERT(Pci() != NULL);
return Pci()->PmenuPopup();
} //*** CTreeItem::PmenuPopup()
inline const CString & CTreeItem::StrName(void) const
{
ASSERT(Pci() != NULL);
return Pci()->StrName();
} //*** CTreeItem::StrName()
/////////////////////////////////////////////////////////////////////////////
#endif // _TREEITEM_INL_