|
|
1.1 root 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
This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.