home *** CD-ROM | disk | FTP | other *** search
/ NeXTSTEP Advantage / NeXTstep_Advantage.img / YourCall / CallController.h < prev    next >
Text File  |  1993-04-14  |  818b  |  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 <appkit/appkit.h>
  7. #import "CallRecord.h"
  8.  
  9. @interface CallController : Object
  10.  
  11. {
  12.     id customerForm; /* the Form containing name, street, city, state, phone */
  13.     id questionText; /* the TextField containing the customer query */
  14.     id answerText; /* the TextField containing customer support answer */
  15.     id callTable; /* the HashTable that stores CallRecords */
  16.     id infoPanel; /* the application's info panel */
  17.     char callFilePath[MAXPATHLEN + 1]; /* a buffer for the log file path */
  18. }
  19.  
  20. - init;
  21. - awakeFromNib;
  22. - clearForm:sender;
  23. - retrieveCall:sender;
  24. - saveCall:sender;
  25. - showInfoPanel:sender;
  26. - free;
  27.  
  28. @end
  29.