home *** CD-ROM | disk | FTP | other *** search
- /*
- Controller.m - Copyright (c) 1992 NeXT Computer, Inc.
-
- You may freely copy, distribute and reuse the code in this example.
- NeXT Computer, Inc. disclaims any warranty of any kind, expressed or implied,
- as to its fitness for any particular use.
- */
-
- #import <appkit/appkit.h>
- #import "Controller.h"
- #import "StoreManager.h"
-
- @implementation Controller
-
- - new:sender
- {
- [[[StoreManager alloc] init] new:self];
- return self;
- }
-
- - open:sender
- {
- [[[StoreManager alloc] init] open:self];
- return self;
- }
-
- @end
-