home *** CD-ROM | disk | FTP | other *** search
/ Nebula 1995 August / NEBULA.mdf / SourceCode / Database / OTC_EOFBetaExamples_V1.0 / EOFramework / EnterpriseObject / AppController.m < prev    next >
Encoding:
Text File  |  1994-06-15  |  819 b   |  36 lines

  1. /*--------------------------------------------------------------------------
  2.  *
  3.  *     You may freely copy, distribute, and reuse the code in this example.
  4.  *     SHL Systemhouse disclaims any warranty of any kind, expressed or  
  5.  *    implied, as to its fitness for any particular use.
  6.  *
  7.  *
  8.  *    AppController
  9.  *
  10.  *    Inherits From:        NSObject
  11.  *
  12.  *    Conforms To:        None
  13.  *
  14.  *    Declared In:        AppController.h
  15.  *
  16.  *
  17.  *------------------------------------------------------------------------*/
  18. #import "AppController.h"
  19. #import <eointerface/EOController.h>
  20.  
  21.  
  22.  
  23. @implementation AppController
  24.  
  25. /*--------------------------------------------------------------------------
  26.  *    Initialization
  27.  *------------------------------------------------------------------------*/
  28. - appDidInit: sender
  29. {
  30.     [eoController fetch: nil];
  31.     return self;
  32. }
  33.  
  34.  
  35. @end
  36.