home *** CD-ROM | disk | FTP | other *** search
/ NeXTSTEP Advantage / NeXTstep_Advantage.img / YourCallServer / CallRecord.h < prev    next >
Text File  |  1993-04-14  |  490b  |  26 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 "callData.h"
  8.  
  9. @interface CallRecord:Object <CallData>
  10.  
  11. {
  12.     char *name; 
  13.     char *street;
  14.     char *city;
  15.     char *state;
  16.     char *phone;
  17.     char *question;
  18.     char *answer;
  19. }
  20.  
  21. - read:(NXTypedStream *)theStream;
  22. - write:(NXTypedStream *)theStream;
  23. - free;
  24.  
  25. @end
  26.