/* GdbBrowserCell.h created by ovidiu on Sat 05-Apr-1997 */

#import <AppKit/NSBrowserCell.h>
#import "Variable.h"

@interface GdbBrowserCell : NSBrowserCell
{
  id<GdbDisplayValue,NSObject> displayableObject;
  int state;
  BOOL isHighlighted;
  BOOL objectIsArrayComponent;
}

- (void)setObjectToDisplay:(id<GdbDisplayValue,NSObject>)obj;
- (void)setObjectIsArrayComponent:(BOOL)flag;

@end
