home *** CD-ROM | disk | FTP | other *** search
/ Nebula 1995 August / NEBULA.mdf / SourceCode / Database / OTC_EOFBetaExamples_V1.0 / EOFramework / DataSource / DataSource.h < prev    next >
Encoding:
Text File  |  1994-06-08  |  887 b   |  38 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.  *    DataSource
  9.  *
  10.  *    Inherits From:        NSObject
  11.  *
  12.  *    Conforms To:        EOQualifiedDataSources, EORollbackDataSources
  13.  *
  14.  *    Declared In:        DataSource.h
  15.  *
  16.  *    Class Description
  17.  *
  18.  *        A DataSource object acts as a source for data-bearing objects
  19.  *        retrieved from some external store.
  20.  *
  21.  *
  22.  *------------------------------------------------------------------------*/
  23. #import <eoaccess/EODataSources.h>
  24. #import <foundation/NSObject.h>
  25.  
  26. @class NSMutableArray;
  27.  
  28.  
  29.  
  30.  
  31. @interface DataSource : NSObject <EODataSources, EORollbackDataSources>
  32. {
  33.     NSMutableArray    *persistentStore;
  34.     NSMutableArray    *workingStore; 
  35. }
  36.  
  37. @end
  38.