@@ -50,11 +50,11 @@ */ @interface OFTarArchiveEntry: OFObject { OFString *_fileName; unsigned long _mode; - unsigned long long _size; + unsigned long long _compressedSize, _uncompressedSize; unsigned long _UID, _GID; OFDate *_modificationDate; OFTarArchiveEntryType _type; OFString *_Nullable _targetFileName; OFString *_Nullable _owner, *_Nullable _group; @@ -81,13 +81,18 @@ * @brief The GID of the group. */ @property (readonly, nonatomic) unsigned long GID; /** - * @brief The size of the file. + * @brief The compressed size of the file. + */ +@property (readonly, nonatomic) unsigned long long compressedSize; + +/** + * @brief The uncompressed size of the file. */ -@property (readonly, nonatomic) unsigned long long size; +@property (readonly, nonatomic) unsigned long long uncompressedSize; /** * @brief The date of the last modification of the file. */ @property (readonly, retain, nonatomic) OFDate *modificationDate;