@@ -12,44 +12,30 @@ * LICENSE.GPLv2 or LICENSE.GPLv3 respectively included in the packaging of this * file. */ #import "OFLHAArchiveEntry.h" +#import "OFMutableArchiveEntry.h" OF_ASSUME_NONNULL_BEGIN /** * @class OFMutableLHAArchiveEntry \ * OFMutableLHAArchiveEntry.h ObjFW/OFMutableLHAArchiveEntry.h * * @brief A class which represents a mutable entry in an LHA archive. */ -@interface OFMutableLHAArchiveEntry: OFLHAArchiveEntry +@interface OFMutableLHAArchiveEntry: OFLHAArchiveEntry { OF_RESERVE_IVARS(OFMutableLHAArchiveEntry, 4) } -/** - * @brief The file name of the entry. - */ -@property (readwrite, copy, nonatomic) OFString *fileName; - /** * @brief The compression method of the entry. */ @property (readwrite, copy, nonatomic) OFString *compressionMethod; -/** - * @brief The compressed size of the entry's file. - */ -@property (readwrite, nonatomic) unsigned long long compressedSize; - -/** - * @brief The uncompressed size of the entry's file. - */ -@property (readwrite, nonatomic) unsigned long long uncompressedSize; - /** * @brief The modification date of the file. */ @property (readwrite, retain, nonatomic) OFDate *modificationDate;