home *** CD-ROM | disk | FTP | other *** search
- /* A subclass of the NXBrowserClass that simply overides the
- setTag: and tag methods so that they can be used */
-
- #import <appkit/NXBrowserCell.h>
-
- @interface MyBrowserCell : NXBrowserCell
- {
- /* I use the tag to hold the id of the ProsperoVLINK object the cell
- represents when it is a leaf */
- id tag;
- }
-
- - setTag : vlinkID;
- - tag;
-
- @end
-