home *** CD-ROM | disk | FTP | other *** search
/ Nebula 1994 June / NEBULA_SE.ISO / SourceCode / MiscKit / Headers / misckit / MiscQueue.h < prev    next >
Encoding:
Text File  |  1994-03-23  |  757 b   |  26 lines

  1. //
  2. //    MiscQueue.h -- a List subclass that acts like a queue
  3. //        Written by Don Yacktman Copyright (c) 1993 by Don Yacktman.
  4. //                Version 1.0.  All rights reserved.
  5. //
  6. //        This notice may not be removed from this source code.
  7. //
  8. //    This object is included in the MiscKit by permission from the author
  9. //    and its use is governed by the MiscKit license, found in the file
  10. //    "LICENSE.rtf" in the MiscKit distribution.  Please refer to that file
  11. //    for a list of all applicable permissions and restrictions.
  12. //    
  13.  
  14. // This could really be a category...
  15.  
  16. #import <appkit/appkit.h>
  17.  
  18. @interface MiscQueue : List
  19. {
  20. }
  21.  
  22. // use -addObject: (from List) to add to the queue, and this to
  23. // remove from the queue.  Other List methods still apply.
  24. - removeNextObject;
  25.  
  26. @end