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.

55 lines
1.4 KiB

  1. /////////////////////////////////////////////////////////////////////////////
  2. //
  3. // Copyright (c) 1996 Microsoft Corporation
  4. //
  5. // Module Name:
  6. // TreeItem.inl
  7. //
  8. // Abstract:
  9. // Inline function implementations for the CTreeItem class.
  10. //
  11. // Author:
  12. // David Potter (davidp) May 3, 1996
  13. //
  14. // Revision History:
  15. //
  16. // Notes:
  17. //
  18. /////////////////////////////////////////////////////////////////////////////
  19. #ifndef _TREEITEM_INL_
  20. #define _TREEITEM_INL_
  21. /////////////////////////////////////////////////////////////////////////////
  22. // Include Files
  23. /////////////////////////////////////////////////////////////////////////////
  24. #ifndef _TREEITEM_H_
  25. #include "TreeItem.h" // for CTreeItem
  26. #endif
  27. #ifndef _CLUSITEM_H_
  28. #include "ClusItem.h" // for CClusterItem
  29. #endif
  30. /////////////////////////////////////////////////////////////////////////////
  31. // Inline Function Definitions
  32. /////////////////////////////////////////////////////////////////////////////
  33. inline CMenu * CTreeItem::PmenuPopup(void)
  34. {
  35. ASSERT(Pci() != NULL);
  36. return Pci()->PmenuPopup();
  37. } //*** CTreeItem::PmenuPopup()
  38. inline const CString & CTreeItem::StrName(void) const
  39. {
  40. ASSERT(Pci() != NULL);
  41. return Pci()->StrName();
  42. } //*** CTreeItem::StrName()
  43. /////////////////////////////////////////////////////////////////////////////
  44. #endif // _TREEITEM_INL_