This is FmsPointerPair.m in view mode; [Download] [Up]
// FmsPointerPair
//
// Copyright 1994 Flying Monkey Software
// 8424 Todd Creek Cr. WestChester OH 45069
//
// This code is distributed as shareware. If you like it or use it, please
// send an appropriate amount of money (one dollar is suggested) to the
// above address.
//
// Modification is cool by us, as well as inclusion of this code in a
// for-profit product in compiled form. However, Flying Monkey Software
// retains all copyrights; you are hereby not given permission to resell
// this code in code form without written consent of Flying Monkey.
#import "FmsPointerPair.h"
@implementation FmsPointerPair
- initFirst:(char *)newFirst second:(char *)newSecond
{
[self setFirst:newFirst];
[self setSecond:newSecond];
return self;
}
- (char *)first
{
return first;
}
- setFirst:(char *)newFirst
{
first = newFirst;
return self;
}
- (char *)second
{
return second;
}
- setSecond:(char *)newSecond
{
second = newSecond;
return self;
}
@end
These are the contents of the former NiCE NeXT User Group NeXTSTEP/OpenStep software archive, currently hosted by Netfuture.ch.