home *** CD-ROM | disk | FTP | other *** search
/ OpenStep (Enterprise) / OpenStepENTCD.toast / OEDEV / EODEV.Z / Studios_main.m < prev    next >
Encoding:
Text File  |  1996-08-23  |  679 b   |  27 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.  
  11. int main(int argc, const char *argv[]) {
  12.    return NSApplicationMain(argc, argv);
  13. }
  14.  
  15. #ifdef WIN32
  16. #import <EOControl/EOControl.h>
  17. #import <EOAccess/EOAccess.h>
  18. #import <EOInterface/EOInterface.h>
  19.  
  20. void _referenceAllEOFrameworks()
  21. {
  22.     [EODisplayGroup new];        // EOInterface
  23.     [EOEntity new];              // EOAccess
  24.     [EOEditingContext new];      // EOControl
  25. }
  26. #endif
  27.