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

  1. /*
  2.     Copyright (C) 1994 Sean Luke
  3.  
  4.     COWSArgumentList.h
  5.     Version 1.0
  6.     Sean Luke
  7.     
  8. */
  9.  
  10.  
  11.  
  12. #import <objc/Object.h>
  13. #import "COWSStringNode.h"
  14. #import "COWSStack.h"
  15.  
  16. @interface COWSArgumentList:COWSStack
  17. {
  18.     id temp;
  19. }
  20.  
  21. - init;
  22. - first;        // O(1)
  23. - last;            // O(n)
  24. - next;            // if you call pop, 
  25.                 // don't call next until you've called first or last!
  26. - prev;            // likewise.
  27. - now;            // likewise.  Now gives the current pointed object without
  28.                 // moving to the next one.  It returns NULL if nothing. 
  29. - copy;
  30. @end