home *** CD-ROM | disk | FTP | other *** search
/ Xentax forum attachments archive / xentax.7z / 8090 / ModelEdit.7z / ltwintreekey.h < prev    next >
Encoding:
C/C++ Source or Header  |  2006-03-08  |  546 b   |  25 lines

  1. ////////////////////////////////////////////////////////////////
  2. //
  3. // ltwintreekey.h
  4. //
  5. // The key class used by the tree manager to uniquely identify
  6. // an item
  7. //
  8. // Author: John O'Rorke
  9. // Created: 7/21/00
  10. // Modification History:
  11. //
  12. ////////////////////////////////////////////////////////////////
  13. #ifndef __LTWINTREEKEY_H__
  14. #define __LTWINTREEKEY_H__
  15.  
  16. class CLTWinTreeItem;
  17.  
  18. //the keys used to identify unique items
  19. typedef CLTWinTreeItem* CLTWinTreeKey;    
  20.  
  21. //a null item
  22. #define NULLITEM        ((CLTWinTreeKey)0)
  23.  
  24. #endif
  25.