This is COWSNode.m in view mode; [Download] [Up]
/*
Copyright (C) 1994 Sean Luke
COWSNode.m
Version 1.0
Sean Luke
*/
#import "COWSNode.h"
@implementation COWSNode
- init
{
id returnval=[super init];
next=NULL;
return returnval;
}
- setNext: this
{
next=this;
return self;
}
- next
{
return next;
}
- setPrev: this
{
prev=this;
return self;
}
- prev
{
return prev;
}
- free
{
return [super free];
}
@endThese are the contents of the former NiCE NeXT User Group NeXTSTEP/OpenStep software archive, currently hosted by Netfuture.ch.