home *** CD-ROM | disk | FTP | other *** search
- /*
- Copyright (c) 1996, NeXT Software, Inc.
- All rights reserved.
-
- 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.
- */
- #import <EOInterface/EOInterface.h>
-
- @interface Transaction : NSObject
- {
- id customerDisplayGroup;
- id memberDisplayGroup;
- id unitDisplayGroup;
- id feesDisplayGroup;
- id insertButton;
-
- id total;
- id tax;
- id totalDue;
- }
-
- - initWithCustomerGlobalID:(EOGlobalID *)gid;
- - (void)paymentDone:(id)sender;
- - (void)productReturn:(id)sender;
- - (void)revert:(id)sender;
-
- @end
-