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