ftp.nice.ch/pub/next/connectivity/protocol/PPPMeter.v1.5.NIHS.bs.tar.gz#/PPPMeter.v1.5/Source/ARStorage.m

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

#import "ARStorage.h"

@implementation ARStorage

- init
{
   [super init];
   retainCount = 1;
   return self;
}

- initCount: (unsigned int) c elementSize: (unsigned int) s description: (const char *)str
{
   [super initCount: c elementSize: s description: str];
   retainCount = 1;
   return self;
}

- incrementRetainCount
{
   retainCount++;
   return self;
}

- decrementRetainCount
{
   retainCount--;
   return self;
}

- (unsigned int) retainCount
{
   return retainCount;
}

@end

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