ftp.nice.ch/pub/next/connectivity/news/NewsBase.3.02.s.tar.gz#/NewsBase302.source/NNTP/IZIntPair.m

This is IZIntPair.m in view mode; [Download] [Up]

/* Generated by Interface Builder */

#import "IZIntPair.h"
#import <stdio.h>

@implementation IZIntPair

- setFirst:(int)kfirst last:(int)klast
{
    first = kfirst;
    last = klast;
    if (first > last) {
	fprintf(stderr,"warning: first \"%d\" > last \"%d\"\n", first, last);
    }
    return self;
}

- setFirst:(int)kfirst
{
    first = kfirst;
    return self;
}

- (int)first
{
    return first;
}

- setLast:(int)klast
{
    last = klast;
    return self;
}

- (int)last
{
    return last;
}

@end

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