00001 #ifndef SAMPLE_HANDLER__DISK_WRITER_LOCAL_H
00002 #define SAMPLE_HANDLER__DISK_WRITER_LOCAL_H
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015 #include <SampleHandler/Global.h>
00016
00017 #include <SampleHandler/DiskWriter.h>
00018
00019 namespace SH
00020 {
00023 class DiskWriterLocal : public DiskWriter
00024 {
00025
00026
00027
00028
00033 public:
00034 void testInvariant () const;
00035
00036
00044 public:
00045 DiskWriterLocal (const std::string& val_path);
00046
00047
00052 public:
00053 ~DiskWriterLocal ();
00054
00055
00056
00057
00058
00059
00060
00062 private:
00063 virtual std::string getPath () const;
00064
00065
00067 private:
00068 virtual TFile *getFile ();
00069
00070
00072 private:
00073 virtual void doClose ();
00074
00075
00076
00077
00078
00079
00080
00082 private:
00083 std::string m_path;
00084
00086 private:
00087 TFile *m_file;
00088 };
00089 }
00090
00091 #endif