/* */ #ifndef _D_FILE_ENTRY_H_ #define _D_FILE_ENTRY_H_ #include "common.h" class FileEntry { public: string path; long long int length; long long int offset; bool extracted; bool requested; FileEntry(const string& path, long long int length, long long int offset): path(path), length(length), offset(offset), extracted(false), requested(true) {} ~FileEntry() {} }; typedef deque FileEntries; #endif // _D_FILE_ENTRY_H_