home *** CD-ROM | disk | FTP | other *** search
/ NeXT Enterprise Objects Framework 1.1 / NeXT Enterprise Objects Framework 1.1.iso / NextDeveloper / Headers / eointerface / EOApplication.h next >
Encoding:
Text File  |  1994-05-28  |  701 b   |  23 lines

  1. /* EOApplication.h
  2.  * Enterprise Objects Framework
  3.  * Copyright (c) 1994, NeXT Computer, Inc.  All rights reserved.
  4.  */
  5.  
  6. #import <appkit/appkit.h>
  7.  
  8. /* EOF apps running under 3.2 don't have autorelease pools enabled,
  9.  * which means that autoreleased objects aren't freed.  If you need
  10.  * to enable autorelease pools and you are running under 3.2, you
  11.  * should use EOApplication or a subclass of it as your application
  12.  * class.  Using an EOApplication or a subclass of it as your application
  13.  * class enables the autorelease pool mechanism for your application.
  14.  *
  15.  * To set your application's class, use the Attributes window of
  16.  * ProjectBuilder.
  17.  */
  18.  
  19. @interface EOApplication: Application
  20. {
  21. }
  22. @end
  23.