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 <AppKit/AppKit.h>
-
- int main(int argc, const char *argv[]) {
- return NSApplicationMain(argc, argv);
- }
-
- #ifdef WIN32
- #import <EOControl/EOControl.h>
- #import <EOAccess/EOAccess.h>
- #import <EOInterface/EOInterface.h>
- #import <BusinessLogic/BusinessLogic.h>
-
- void _referenceAllEOFrameworks()
- {
- [EODisplayGroup new]; // EOInterface
- [EOEntity new]; // EOAccess
- [EOEditingContext new]; // EOControl
- [Customer new]; // BusinessLogic
- }
- #endif
-