home *** CD-ROM | disk | FTP | other *** search
/ Big Green CD 8 / BGCD_8_Dev.iso / NEXTSTEP / UNIX / Programming / GDBbundle-1.0-MIS / src / TextEdit / GdbBundle.bproj / GdbBrowserCell.h < prev    next >
Encoding:
Text File  |  1997-04-14  |  393 b   |  18 lines

  1. /* GdbBrowserCell.h created by ovidiu on Sat 05-Apr-1997 */
  2.  
  3. #import <AppKit/NSBrowserCell.h>
  4. #import "Variable.h"
  5.  
  6. @interface GdbBrowserCell : NSBrowserCell
  7. {
  8.   id<GdbDisplayValue,NSObject> displayableObject;
  9.   int state;
  10.   BOOL isHighlighted;
  11.   BOOL objectIsArrayComponent;
  12. }
  13.  
  14. - (void)setObjectToDisplay:(id<GdbDisplayValue,NSObject>)obj;
  15. - (void)setObjectIsArrayComponent:(BOOL)flag;
  16.  
  17. @end
  18.