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

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

#import "IDatumD.h"
#import <objc/hashtable.h>

@implementation IDatumD

- initWithKey:(const char *)aKey andData:aDatum
{
    key = NXCopyStringBufferFromZone(aKey, [self zone]);
    data = aDatum;
    return self;
}

- (const char *)key
{
    return key;
}

- (void)setData:aDatum
{
    data = aDatum;
}

- data
{
    return data;
}

@end

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