/* */ #ifndef _D_PRE_ALLOCATION_DISK_WRITER_H_ #define _D_PRE_ALLOCATION_DISK_WRITER_H_ #include "AbstractDiskWriter.h" class PreAllocationDiskWriter:public AbstractDiskWriter { private: long long int totalLength; public: PreAllocationDiskWriter(long long int totalLength); ~PreAllocationDiskWriter(); void initAndOpenFile(string filename); }; #endif // _D_PRE_ALLOCATION_DISK_WRITER_H_