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

  1. /*
  2.     Copyright (C) 1994 Sean Luke
  3.  
  4.     COWSStack.h
  5.     Version 1.0
  6.     Sean Luke
  7.     
  8. */
  9.  
  10.  
  11.  
  12.  
  13. #import <objc/Object.h>
  14.  
  15. @interface COWSStack:Object
  16. {
  17.     id current;
  18. }
  19.  
  20. - init;
  21. - push:this;
  22. - pop;
  23. - top;
  24. - clear;
  25. - (int) number;
  26. - topSymbol;        // returns NULL if there is no symbol above a state
  27. - topState;
  28. - free;
  29. - printContents;
  30.     
  31. @end