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