home *** CD-ROM | disk | FTP | other *** search
/ NeXTSTEP Advantage / NeXTstep_Advantage.img / YourCallDemo / CallController.h < prev    next >
Text File  |  1993-03-26  |  631b  |  24 lines

  1. #import <appkit/appkit.h>
  2. #import "CallRecord.h"
  3.  
  4. @interface CallController : Object
  5.  
  6. {
  7.     id customerForm; /* the Form containing name, street, city, state, phone */
  8.     id questionText; /* the TextField containing the customer query */
  9.     id answerText; /* the TextField containing customer support answer */
  10.     id callTable; /* the HashTable that stores CallRecords */
  11.     id infoPanel; /* the application's info panel */
  12.     char callFilePath[MAXPATHLEN + 1]; /* a buffer for the log file path */
  13. }
  14.  
  15. - init;
  16. - awakeFromNib;
  17. - clearForm:sender;
  18. - retrieveCall:sender;
  19. - saveCall:sender;
  20. - showInfoPanel:sender;
  21. - free;
  22.  
  23. @end
  24.