home *** CD-ROM | disk | FTP | other *** search
/ OpenStep (Enterprise) / OpenStepENTCD.toast / OEDEV / EODEV.Z / Guest.h < prev    next >
Encoding:
Text File  |  1996-08-23  |  525 b   |  21 lines

  1. /*
  2.         Copyright (c) 1996, NeXT Software, Inc.
  3.         All rights reserved.
  4.  
  5.         You may freely copy, distribute and reuse the code in this example.
  6.         NeXT disclaims any warranty of any kind, expressed or implied,
  7.         as to its fitness for any particular use.
  8. */
  9. #import <BusinessLogic/Customer.h>
  10.  
  11. @class Member;
  12.  
  13. @interface Guest : Customer
  14. {
  15.     NSDecimalNumber *costRestriction;
  16.     Member *member;
  17. }
  18. - (NSDecimalNumber *)costRestriction;
  19. - (void)setCostRestriction:(NSDecimalNumber *)restriction;
  20. @end
  21.