home *** CD-ROM | disk | FTP | other *** search
/ NeXTSTEP Advantage / NeXTstep_Advantage.img / YourCall / CallRecord.h < prev    next >
Text File  |  1993-04-14  |  872b  |  39 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.  
  8. @interface CallRecord:Object
  9.  
  10. {
  11.     char *name; 
  12.     char *street;
  13.     char *city;
  14.     char *state;
  15.     char *phone;
  16.     char *question;
  17.     char *answer;
  18. }
  19.  
  20. - (const char *)name;
  21. - setName:(const char *)theName;
  22. - (const char *)street;
  23. - setStreet:(const char *)theStreet;
  24. - (const char *)city;
  25. - setCity:(const char *)theCity;
  26. - (const char *)state;
  27. - setState:(const char *)theState;
  28. - (const char *)phone;
  29. - setPhone:(const char *)thePhone;
  30. - (const char *)question;
  31. - setQuestion:(const char *)theQuestion;
  32. - (const char *)answer;
  33. - setAnswer:(const char *)theAnswer;
  34. - read:(NXTypedStream *)theStream;
  35. - write:(NXTypedStream *)theStream;
  36. - free;
  37.  
  38. @end
  39.