00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039 #ifndef DatastoreRecorder_h
00040 #define DatastoreRecorder_h
00041
00042 #include <Recorder.h>
00043
00044 #include <Domain.h>
00045 #include <FE_Datastore.h>
00046
00058 class DatastoreRecorder: public Recorder
00059 {
00060 public:
00064 DatastoreRecorder(FE_Datastore &theDatastore);
00065
00069 ~DatastoreRecorder();
00070
00075 int record(int commitTag);
00076
00081 int playback(int commitTag);
00082
00086 void restart(void);
00087
00088
00089 protected:
00090
00091 private:
00093 FE_Datastore *theDatastore;
00094
00095 };
00096
00097
00098 #endif
00099