00001
00002
00003
00004
00005 #ifndef EQ_CONFIGSTATISTICS_H
00006 #define EQ_CONFIGSTATISTICS_H
00007
00008 #include <eq/client/configEvent.h>
00009 #include <eq/client/event.h>
00010
00011 namespace eq
00012 {
00013 class Config;
00014
00018 class ConfigStatistics
00019 {
00020 public:
00021 ConfigStatistics( const Statistic::Type type, Config* config );
00022 ~ConfigStatistics();
00023
00024 ConfigEvent event;
00025 bool ignore;
00026
00027 private:
00028 Config* _config;
00029 };
00030 }
00031
00032 #endif // EQ_CONFIGSTATISTICS_H