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