@@ -12,29 +12,25 @@ * LICENSE.GPLv2 or LICENSE.GPLv3 respectively included in the packaging of this * file. */ #import "OFTarArchiveEntry.h" +#import "OFMutableArchiveEntry.h" OF_ASSUME_NONNULL_BEGIN /** * @class OFMutableTarArchiveEntry \ * OFMutableTarArchiveEntry.h ObjFW/OFMutableTarArchiveEntry.h * * @brief A class which represents a mutable entry of a tar archive. */ -@interface OFMutableTarArchiveEntry: OFTarArchiveEntry +@interface OFMutableTarArchiveEntry: OFTarArchiveEntry { OF_RESERVE_IVARS(OFMutableTarArchiveEntry, 4) } -/** - * @brief The file name of the entry. - */ -@property (readwrite, copy, nonatomic) OFString *fileName; - /** * @brief The mode of the entry. */ @property (readwrite, nonatomic) unsigned long mode; @@ -46,20 +42,10 @@ /** * @brief The GID of the group. */ @property (readwrite, nonatomic) unsigned long GID; -/** - * @brief The compressed size of the file. - */ -@property (readwrite, nonatomic) unsigned long long compressedSize; - -/** - * @brief The uncompressed size of the file. - */ -@property (readwrite, nonatomic) unsigned long long uncompressedSize; - /** * @brief The date of the last modification of the file. */ @property (readwrite, retain, nonatomic) OFDate *modificationDate;