home *** CD-ROM | disk | FTP | other *** search
/ NeXTSTEP Advantage / NeXTstep_Advantage.img / YourCallServer / callProvider.h < prev    next >
Text File  |  1993-04-14  |  691b  |  20 lines

  1. /* You may freely copy, distribute and reuse the code in this example.
  2.  * NeXT disclaims any warranty of any kind, expressed or implied, as to
  3.  * its fitness for any particular use.
  4.  * 
  5.  * This protocol specifies methods for passing call records between client
  6.  * and server
  7.  * 
  8.  * CallProvider implements this protocol within the CallServer application.
  9.  * The CallClient application knows about these methods only through this
  10.  * protocol; it doesn't need to know about the class that actually
  11.  * implements them.  
  12.  */
  13.  
  14. #import "callData.h"
  15.  
  16. @protocol CallProvider
  17. - (id <CallData>)lookupCall:(const char *)fetchName;
  18. - (id <CallData>)newRecord;
  19. - storeCall:(id <CallData>)theRecord;
  20. @end