ftp.nice.ch/pub/next/developer/objc/api/QuestorAPI.3.2.s.tar.gz#/Questor_API/API/Files/XQ_InterchangeCell.h

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

//
//	Xanthus
//	Copyright (c) 1992, 1993, 1994 Bjorn Backlund & Jesper Lundh.  
//	All rights reserved. 
//

#import <objc/Object.h>

#define XQ_INTERCHANGE_INT	0
#define XQ_INTERCHANGE_DOUBLE	1
#define XQ_INTERCHANGE_STRING	2


@interface XQ_InterchangeCell:Object
{
	char theType;
	char theCellType;
	union {
		char	*stringValue;
		double	doubleValue;
		int 	intValue;
	} theValue;
}

- _fillFrom:node;
- princ:(NXStream *)stream;

- (int)type;
- setType: (int)type;

- (int)cellType;
- setCellType: (int)type;

- (const char *)stringValue;
- (double)doubleValue;
- (int)intValue;

- setStringValue: (const char *)string;
- setDoubleValue: (double)d;
- setIntValue: (int)i;

@end

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