18 OF_ASSUME_NONNULL_BEGIN
20 @class OFArray OF_GENERIC(ObjectType);
34 OFString *_fileName, *_Nullable _directoryName, *_compressionMethod;
35 uint32_t _compressedSize, _uncompressedSize;
39 uint8_t _operatingSystemIdentifier;
41 OFNumber *_Nullable _mode, *_Nullable _UID, *_Nullable _GID;
42 OFString *_Nullable _owner, *_Nullable _group;
43 OFDate *_Nullable _modificationDate;
51 @property (readonly, copy, nonatomic)
OFString *fileName;
56 @property (readonly, copy, nonatomic)
OFString *compressionMethod;
61 @property (readonly, nonatomic) uint32_t compressedSize;
66 @property (readonly, nonatomic) uint32_t uncompressedSize;
71 @property (readonly, retain, nonatomic)
OFDate *date;
76 @property (readonly, nonatomic) uint8_t headerLevel;
81 @property (readonly, nonatomic) uint16_t CRC16;
86 @property (readonly, nonatomic) uint8_t operatingSystemIdentifier;
91 @property OF_NULLABLE_PROPERTY (readonly, copy, nonatomic)
97 @property OF_NULLABLE_PROPERTY (readonly, retain, nonatomic)
OFNumber *mode;
102 @property OF_NULLABLE_PROPERTY (readonly, retain, nonatomic)
OFNumber *UID;
107 @property OF_NULLABLE_PROPERTY (readonly, retain, nonatomic)
OFNumber *GID;
112 @property OF_NULLABLE_PROPERTY (readonly, copy, nonatomic)
OFString *owner;
117 @property OF_NULLABLE_PROPERTY (readonly, copy, nonatomic)
OFString *group;
122 @property OF_NULLABLE_PROPERTY (readonly, retain, nonatomic)
128 @property (readonly, copy, nonatomic)
OFArray OF_GENERIC(
OFData *) *extensions;
136 + (instancetype)entryWithFileName: (
OFString *)fileName;
138 - (instancetype)init OF_UNAVAILABLE;
147 - (instancetype)initWithFileName: (
OFString *)fileName;
150 OF_ASSUME_NONNULL_END
152 #import "OFMutableLHAArchiveEntry.h"
An abstract class for storing objects in an array.
Definition: OFArray.h:92
A class for storing arbitrary data in an array.
Definition: OFData.h:40
A class for storing, accessing and comparing dates.
Definition: OFDate.h:36
A class which represents an entry in an LHA archive.
Definition: OFLHAArchiveEntry.h:34
An abstract class for storing, adding and removing objects in an array.
Definition: OFMutableArray.h:44
Provides a way to store a number in an object.
Definition: OFNumber.h:49
The root class for all other classes inside ObjFW.
Definition: OFObject.h:520
A class for handling strings.
Definition: OFString.h:132
A protocol for the creation of copies.
Definition: OFObject.h:1187
A protocol for the creation of mutable copies.
Definition: OFObject.h:1208