/* */ #ifndef D_NULL_STAT_CALC_H #define D_NULL_STAT_CALC_H #include "StatCalc.h" namespace aria2 { class NullStatCalc:public StatCalc { public: virtual ~NullStatCalc() {} virtual void calculateStat(const DownloadEngine* e) {} }; } // namespace aria2 #endif // D_NULL_STAT_CALC_H