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) 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_
|