home *** CD-ROM | disk | FTP | other *** search
/ OpenStep (Enterprise) / OpenStepENTCD.toast / OEDEV / EODEV.Z / main.m < prev    next >
Encoding:
Text File  |  1996-08-24  |  862 b   |  31 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. #import <BusinessLogic/BusinessLogic.h>
  20. #import <EOExtensions/EOBrowserAssociation.h>
  21.  
  22. void _referenceAllEOFrameworks()
  23. {
  24.     [EODisplayGroup new];        // EOInterface
  25.     [EOEntity new];              // EOAccess
  26.     [EOEditingContext new];      // EOControl
  27.     [Customer new];             // BusinessLogic
  28.     [EOBrowserAssociation new];    // EOExtensions
  29. }
  30. #endif
  31.