home *** CD-ROM | disk | FTP | other *** search
/ Nebula 1995 August / NEBULA.mdf / SourceCode / Database / OTC_EOFBetaExamples_V1.0 / EOFramework / Buffering / AppController.h next >
Encoding:
Text File  |  1994-07-30  |  1.2 KB  |  54 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.  *    Class Description
  17.  *
  18.  *        Application controller for EO buffering example.
  19.  *        EOController delegate.
  20.  *
  21.  *
  22.  *------------------------------------------------------------------------*/
  23. #import <foundation/NSObject.h>
  24.  
  25.  
  26.  
  27.  
  28. @interface AppController : NSObject
  29. {
  30.     id    eoController;
  31.     id    console;
  32.     id    objectButton;
  33.     id    dataSourceButton;
  34. }
  35.  
  36. /*--------------------------------------------------------------------------
  37.  *    Modifying Buffer Characteristics
  38.  *------------------------------------------------------------------------*/
  39. - setBuffering: sender;
  40.  
  41.  
  42. /*--------------------------------------------------------------------------
  43.  *    Cover Methods for EOController Actions
  44.  *------------------------------------------------------------------------*/
  45. - fetch: sender;
  46. - insert: sender;
  47. - delete: sender;
  48. - saveToObjects: sender;
  49. - saveToDataSource: sender;
  50. - undo: sender;
  51.  
  52.  
  53. @end
  54.