home *** CD-ROM | disk | FTP | other *** search
/ NeXTSTEP Advantage / NeXTstep_Advantage.img / YourCallClient / CallClient.h next >
Text File  |  1993-04-14  |  774b  |  29 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.  
  6. #import <remote/NXConnection.h>
  7. #import <appkit/appkit.h>
  8. #import "callProvider.h"
  9.  
  10. @interface CallClient : Object
  11.  
  12. {
  13.     id customerForm; /* the Form containing name, street, city, state, phone */
  14.     id questionText; /* the TextField containing the customer query */
  15.     id answerText; /* the TextField containing customer support answer */
  16.     id callProvider; /* proxy for the server's call provider */
  17.     id infoPanel; /* the application's info panel */
  18. }
  19.  
  20. - init;
  21. - awakeFromNib;
  22. - retrieveCall:sender;
  23. - saveCall:sender;
  24. - clearForm:sender;
  25. - showInfoPanel:sender;
  26. - free;
  27.  
  28. @end
  29.