home *** CD-ROM | disk | FTP | other *** search
/ Nebula 1995 August / NEBULA.mdf / Apps / DevTools / COWS / Code / COWSLibraryFunctionNode.h < prev    next >
Encoding:
Text File  |  1994-03-05  |  353 b   |  28 lines

  1. /*
  2.     Copyright (C) 1994 Sean Luke
  3.  
  4.     COWSLibraryFunctionNode.h
  5.     Version 1.0
  6.     Sean Luke
  7.     
  8. */
  9.  
  10.  
  11.  
  12.  
  13. #import "COWSNode.h"
  14.  
  15. @interface COWSLibraryFunctionNode:COWSNode
  16. {
  17.     id        target;
  18.     SEL        selector;
  19. }
  20.  
  21. - init;
  22. - setTarget:this_target;
  23. - target;
  24. - setSelector:(SEL) this_selector;
  25. - (SEL) selector;
  26. - printContents;    // debugging...but this does nothing...
  27.     
  28. @end