home *** CD-ROM | disk | FTP | other *** search
/ OpenStep (Enterprise) / OpenStepENTCD.toast / OEDEV / EODEV.Z / InventoryEntry.h < prev    next >
Encoding:
Text File  |  1996-08-31  |  961 b   |  41 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 <AppKit/AppKit.h>
  10. #import <EOAccess/EOAccess.h>
  11.  
  12. @interface InventoryEntry : NSObject
  13. {
  14.     id movieMediaView;
  15.     id movieMediaFirstKey;
  16.     id movieMediaController;
  17.     id gameMediaView;
  18.     id gameMediaFirstKey;
  19.     id gameMediaController;
  20.     id gamePlayerView;
  21.     id gamePlayerFirstKey;
  22.     id gamePlayerController;
  23.     id productController;
  24.     id movieController; // Just for sorting
  25.     
  26.     id currentView;
  27.     id currentAssociation;
  28.     id currentController;
  29.     id superView;
  30.  
  31.     id attachKeyFrom;
  32.     BOOL didInitViews;
  33. }
  34.  
  35. - (void)insertVideoTape:sender;
  36. - (void)insertVideoDisc:sender;
  37. - (void)insertGamePlayer:sender;
  38. - (void)insertGameMedia:sender;
  39.  
  40. @end
  41.