56 lines
1.3 KiB
Plaintext
56 lines
1.3 KiB
Plaintext
|
/////////////////////////////////////////////////////////////////////////////
|
||
|
//
|
||
|
// 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_
|