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

  1. /* 
  2.  * ToDoServer - implements DO connectivity to the ToDo application
  3.  *
  4.  * You may freely copy, distribute and reuse the code in this example.
  5.  * This code is provided AS IS without warranty of any kind, expressed 
  6.  * or implied, as to its fitness for any particular use.
  7.  *
  8.  * Copyright 1995 Ralph Zazula (rzazula@next.com).  All Rights Reserved.
  9.  *
  10.  */
  11.  
  12. #import <objc/Object.h>
  13. #import "ToDoNotifications.h"
  14. #import "ToDoServerProtocol.h"
  15. #import <machkit/senderIsInvalid.h>
  16.  
  17. @interface ToDoServer : Object <ToDoServerProtocol, NXSenderIsInvalid>
  18. {
  19.     id clientList;
  20.     id _reservedToDoServer1;
  21. }
  22.  
  23. - itemList;
  24. - addItem:anItem;
  25. - registerForNotification:(id <ToDoNotifications>)sender;
  26.  
  27. @end
  28.  
  29.