home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
NeXTSTEP Advantage
/
NeXTstep_Advantage.img
/
YourCallDemo
/
CallController.h
< prev
next >
Wrap
Text File
|
1993-03-26
|
631b
|
24 lines
#import <appkit/appkit.h>
#import "CallRecord.h"
@interface CallController : Object
{
id customerForm; /* the Form containing name, street, city, state, phone */
id questionText; /* the TextField containing the customer query */
id answerText; /* the TextField containing customer support answer */
id callTable; /* the HashTable that stores CallRecords */
id infoPanel; /* the application's info panel */
char callFilePath[MAXPATHLEN + 1]; /* a buffer for the log file path */
}
- init;
- awakeFromNib;
- clearForm:sender;
- retrieveCall:sender;
- saveCall:sender;
- showInfoPanel:sender;
- free;
@end