home *** CD-ROM | disk | FTP | other *** search
/ Nebula 1 / Nebula One.iso / Misc / RZToDoList / Source / ToDoList.h < prev    next >
Encoding:
Text File  |  1995-06-12  |  463 b   |  22 lines

  1. /* 
  2.  * ToDoList - list that sorts its elements based on the priority of the
  3.  *     ToDoItems that it contains
  4.  *
  5.  * You may freely copy, distribute and reuse the code in this example.
  6.  * This code is provided AS IS without warranty of any kind, expressed 
  7.  * or implied, as to its fitness for any particular use.
  8.  *
  9.  * Copyright 1995 Ralph Zazula (rzazula@next.com).  All Rights Reserved.
  10.  *
  11.  */
  12.  
  13. #import <objc/List.h>
  14.  
  15. @interface ToDoList : List
  16. {
  17. }
  18.  
  19. - sort;
  20.  
  21. @end
  22.