home *** CD-ROM | disk | FTP | other *** search
/ NeXTSTEP 3.0 / NeXTSTEP3.0.iso / NextDeveloper / Examples / IndexingKit / StoreFile / Controller.m < prev    next >
Text File  |  1992-07-19  |  519b  |  28 lines

  1. /*
  2. Controller.m - Copyright (c) 1992 NeXT Computer, Inc.
  3.  
  4. You may freely copy, distribute and reuse the code in this example.
  5. NeXT Computer, Inc. disclaims any warranty of any kind, expressed or implied, 
  6. as to its fitness for any particular use.
  7. */
  8.  
  9. #import <appkit/appkit.h>
  10. #import "Controller.h"
  11. #import "StoreManager.h"
  12.  
  13. @implementation Controller
  14.  
  15. - new:sender
  16. {
  17.     [[[StoreManager alloc] init] new:self];
  18.     return self;
  19. }
  20.  
  21. - open:sender
  22. {
  23.     [[[StoreManager alloc] init] open:self];
  24.     return self;
  25. }
  26.  
  27. @end
  28.