00001
00002
00003 #ifndef XAODCORE_TOOLS_IOSTATS_H
00004 #define XAODCORE_TOOLS_IOSTATS_H
00005
00006 namespace xAOD {
00007
00008
00009 class ReadStats;
00010
00022 class IOStats {
00023
00024 public:
00026 ~IOStats();
00027
00029 static IOStats& instance();
00030
00032 ReadStats& stats();
00034 const ReadStats& stats() const;
00035
00036 private:
00038 IOStats();
00039
00041 ReadStats* m_stats;
00042
00043 };
00044
00045 }
00046
00047 #endif // XAODCORE_TOOLS_IOSTATS_H