home *** CD-ROM | disk | FTP | other *** search
/ OpenStep (Enterprise) / OpenStepENTCD.toast / OEDEV / EODEV.Z / LaserDisc.m < prev    next >
Encoding:
Text File  |  1996-08-23  |  415 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/LaserDisc.h>
  10.  
  11. @implementation LaserDisc
  12.  
  13. - init
  14. {
  15.     [super init];
  16.     media = @"D";
  17.     return self;
  18. }
  19.  
  20. @end
  21.