This is Input.m in view mode; [Download] [Up]
// Input.m
// By Charles G. Fleming, Educational Computing Services, Allegheny College.
// Copyright 1993, Allegheny College.
// You may freely copy, distribute and reuse this code.
// Allegheny College and the author disclaim any warranty of any kind,
// expressed or implied, as to its fitness for any particular use.
#import "Input.h"
@implementation Input
- setInputText:anObject
{
inputText = anObject;
return self;
}
- (BOOL)readDataFromStream:(NXStream *)stream
{
[inputText readText:stream];
[inputText sizeToFit];
return YES;
}
@end
These are the contents of the former NiCE NeXT User Group NeXTSTEP/OpenStep software archive, currently hosted by Netfuture.ch.