/* */ #ifndef D_PROGRESS_AWARE_ENTRY_H #define D_PROGRESS_AWARE_ENTRY_H #include "common.h" #include #include namespace aria2 { class ProgressAwareEntry { public: virtual ~ProgressAwareEntry() {} virtual int64_t getCurrentLength() = 0; virtual int64_t getTotalLength() = 0; virtual bool finished() = 0; }; } // namespace aria2 #endif // D_PROGRESS_AWARE_ENTRY_H