home *** CD-ROM | disk | FTP | other *** search
- /*
- Copyright (C) 1994 Sean Luke
-
- COWSLibraryFunctionNode.h
- Version 1.0
- Sean Luke
-
- */
-
-
-
-
- #import "COWSNode.h"
-
- @interface COWSLibraryFunctionNode:COWSNode
- {
- id target;
- SEL selector;
- }
-
- - init;
- - setTarget:this_target;
- - target;
- - setSelector:(SEL) this_selector;
- - (SEL) selector;
- - printContents; // debugging...but this does nothing...
-
- @end