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

This is COWSStateNode.h in view mode; [Download] [Up]

/*
	Copyright (C) 1994 Sean Luke

	COWSStateNode.m
	Version 1.0
	Sean Luke
	
*/




#import "COWSStringNode.h"
#import "COWSArgumentList.h"
#import <objc/HashTable.h>
#import <string.h>
#import <stdlib.h>
#import <stdio.h>

@interface COWSStateNode:COWSStringNode
{
	HashTable* 	dictionary;
	COWSArgumentList* arguments;
	int			pos;
}

- init;
- free;
- (COWSArgumentList*) arguments;
- setArguments:this;			// replaces arguments with new arguments
								// used exclusively by the copy method
- (HashTable*) dictionary;
- (int) pos;
- setPos:(int) this;
- printContents;				// printfs contents.  Debugging measure
- copy;							// used exclusively by the stack.
								// returns a duplicate copy of this node.

@end

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