ObjFW  Check-in [4f9e27d416]

Overview
Comment:Fix missing import
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: 4f9e27d416c5bccbf71d4cc3c04155454d108063f5fe85d924b57169716bd6b0
User & Date: js on 2024-02-28 00:41:51
Other Links: manifest | tags
Context
2024-02-28
20:13
ofarc: Add support for Zoo archives (check-in: aaf991863a user: js tags: trunk)
00:41
Fix missing import (check-in: 4f9e27d416 user: js tags: trunk)
00:24
Add OFZooArchive (check-in: 9a95da71d5 user: js tags: trunk)
Changes

Modified src/OFZooArchive.h from [966424ef25] to [2cebcb2c91].

113
114
115
116
117
118
119

120
121
122
123
124
125
126
127
128
129
130
131
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132







+












 *
 * @note This is only available in read mode.
 *
 * @note The returned stream conforms to @ref OFReadyForReadingObserving if the
 *	 underlying stream does so, too.
 *
 * @return A stream for reading the current entry
 * @throw OFSeekFailedException Seeking to the data in the archive failed
 */
- (OFStream *)streamForReadingCurrentEntry;

/**
 * @brief Closes the OFZooArchive.
 *
 * @throw OFNotOpenException The archive is not open
 */
- (void)close;
@end

OF_ASSUME_NONNULL_END

Modified src/OFZooArchive.m from [47da796afe] to [8c6fa7786c].

19
20
21
22
23
24
25

26
27
28
29
30
31
32
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33







+








#import "OFZooArchive.h"
#import "OFZooArchiveEntry.h"
#import "OFZooArchiveEntry+Private.h"
#import "OFCRC16.h"
#import "OFIRI.h"
#import "OFIRIHandler.h"
#import "OFKernelEventObserver.h"
#import "OFLHADecompressingStream.h"
#import "OFSeekableStream.h"
#import "OFStream.h"
#import "OFString.h"

#import "OFChecksumMismatchException.h"
#import "OFInvalidArgumentException.h"