home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
NeXTSTEP Advantage
/
NeXTstep_Advantage.img
/
YourCallClient
/
callData.h
< prev
next >
Wrap
Text File
|
1993-04-14
|
941b
|
30 lines
/* You may freely copy, distribute and reuse the code in this example.
* NeXT disclaims any warranty of any kind, expressed or implied, as to
* its fitness for any particular use.
*
* This protocol specifies methods for accessing call data
*
* CallRecord implements this protocol within the CallServer application.
* The CallClient application knows about these methods only through this
* protocol; it doesn't need to know about the CallRecord class that actually
* implements them.
*/
@protocol CallData
- (const char *)name;
- setName:(const char *)theName;
- (const char *)street;
- setStreet:(const char *)theStreet;
- (const char *)city;
- setCity:(const char *)theCity;
- (const char *)state;
- setState:(const char *)theState;
- (const char *)phone;
- setPhone:(const char *)thePhone;
- (const char *)question;
- setQuestion:(const char *)theQuestion;
- (const char *)answer;
- setAnswer:(const char *)theAnswer;
@end