ftp.nice.ch/pub/next/connectivity/news/News.0.75.s.tar.gz#/Item.h

This is Item.h in view mode; [Download] [Up]

// Item.h

#import <appkit/Bitmap.h>

#import "config.h"
#import <stddef.h>
#import <strings.h>

#import <objc/Object.h>

@interface Item:Object
{
@public
  char		*cellStrings[MAX_COLUMNS];
  Bitmap	*cellBitmaps[MAX_BITMAPS];
  id		cell;

  char		name[BUFFER_SIZE];
  // user dependent
  BOOL		bogus;
  BOOL		shown;
}

- setCell:aCell;

- (BOOL)bogus;
- (BOOL)shown;

- (char **)strings;
- (Bitmap **)bitmaps;

- (char *)name;

@end

These are the contents of the former NiCE NeXT User Group NeXTSTEP/OpenStep software archive, currently hosted by Netfuture.ch.