/* */ #ifndef _D_NULL_FILE_ALLOCATION_MONITOR_H_ #define _D_NULL_FILE_ALLOCATION_MONITOR_H_ #include "FileAllocationMonitor.h" class NullFileAllocationMonitor : public FileAllocationMonitor { public: NullFileAllocationMonitor() {} virtual ~NullFileAllocationMonitor() {} virtual void setFilename(const string& filename) {} virtual void setMinValue(const int64_t& min) {} virtual void setMaxValue(const int64_t& max) {} virtual void setCurrentValue(const int64_t& current) {} virtual void showProgress() {} }; #endif // _D_NULL_FILE_ALLOCATION_MONITOR_H_