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

  1. /*
  2.     Copyright (C) 1994 Sean Luke
  3.  
  4.     COWSTestBench.h
  5.     Version 1.0
  6.     Sean Luke
  7.     
  8.     This object is just a front end to make the interpreter look pretty in this
  9.     example program...
  10.     
  11. */
  12.  
  13.  
  14.  
  15. #import <appkit/appkit.h>
  16. #import "COWSProtocols.h"
  17.  
  18. @interface COWSTestBench:Object <InterpreterToAppDelegate>
  19. {
  20.     id    library;
  21.     id    interpreter;
  22.     id    program;
  23.     id    matrix;
  24.     id    jungle;
  25.     id    array;
  26.     id    timedEntry;
  27.     id    repeats;
  28.     id    foreground;
  29.     id    locked;
  30.     id    ipc;
  31. }
  32.  
  33. - setTimedEntry:sender;
  34. - revertTimedEntry:sender;
  35. - execute:sender;
  36. - load:sender;
  37. - loadAndExecute:sender;
  38. - print:sender;
  39. - stop:sender;
  40. - finishedInterpreting:(const char*)returnValue:(int)thisMessage:sender;
  41. - errorInterpreting:(int) thisError:(const char*)thisFunction:
  42.     (int)thisPosition:(const char*)thisString:sender;
  43.  
  44. @end
  45.