home *** CD-ROM | disk | FTP | other *** search
/ Super Net 1 / SUPERNET_1.iso / PC / OTROS / UNIX / ARCHIE / CLIENTS / NEXTARCH.TAR / NeXTArchie / MyBrowserCell.h < prev    next >
Encoding:
Text File  |  1992-01-18  |  342 b   |  17 lines

  1. /* A subclass of the NXBrowserClass that simply overides the
  2.     setTag: and tag methods so that they can be used */
  3.  
  4. #import <appkit/NXBrowserCell.h>
  5.  
  6. @interface MyBrowserCell : NXBrowserCell
  7. {
  8.     /* I use the tag to hold the id of the ProsperoVLINK object the cell
  9.         represents when it is a leaf */
  10.     id    tag;    
  11. }
  12.  
  13. - setTag : vlinkID;
  14. - tag;
  15.  
  16. @end
  17.