#ifndef __BTC_MODERATOR_H__ #define __BTC_MODERATOR_H__ #include class CModerator { bool _bShouldSend; std::map fMemory; std::map iMemory; std::map cMemory; public: void shouldSend(bool reset); bool shouldSend(); bool shouldSend(const char* name, float value); bool shouldSend(const char* name, int value); bool shouldSend(const char* name, unsigned char value); void reset(); }; #endif // __BTC_MODERATOR_H__