ftp.nice.ch/pub/next/developer/languages/cows/COWS.1.4.s.tar.gz#/COWS/Subprojects/COWS.subproj/COWSNode.m

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];
	}

@end

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