1234567891011121314151617181920212223242526272829 |
- //
- // Created by Иван_Архипов on 24.11.2017.
- //
- #ifndef LOTRO_DAT_LIBRARY_DDSSUBFILE_H
- #define LOTRO_DAT_LIBRARY_DDSSUBFILE_H
- #include "../SubFile.h"
- namespace LOTRO_DAT {
- class DdsSubFile : public SubFile {
- public:
- DdsSubFile() = delete;
- explicit DdsSubFile(const DdsSubFile &other) = delete;
- DdsSubFile &operator =(const DdsSubFile &other) = delete;
- explicit DdsSubFile(SubFile preinit_file);
- FILE_TYPE FileType() const override;
- std::string Extension() const override;
- SubfileData PrepareForExport(const BinaryData &file_data) override;
- BinaryData MakeForImport(const BinaryData &old_data, const SubfileData &data) override;
- };
- };
- #endif //LOTRO_DAT_LIBRARY_DDSSUBFILE_H
|