home *** CD-ROM | disk | FTP | other *** search
/ OpenStep (Enterprise) / OpenStepENTCD.toast / OEDEV / DEV.Z / main.m < prev    next >
Encoding:
Text File  |  1996-09-12  |  427 b   |  21 lines

  1. #import <AppKit/AppKit.h>
  2.  
  3. int main(int argc, const char *argv[]) {
  4.    return NSApplicationMain(argc, argv);
  5. }
  6.  
  7.  
  8. #ifdef WIN32
  9. #import <EOControl/EOControl.h>
  10. #import <EOAccess/EOAccess.h>
  11. #import <EOInterface/EOInterface.h>
  12.  
  13. void _referenceAllEOFrameworks()
  14. {
  15.     static id a,b,c;
  16.     a = [EODisplayGroup new];  // EOInterface
  17.     b = [EOEntity new];          // EOAccess
  18.     c = [EOEditingContext new];  // EOControl
  19. }
  20. #endif
  21.