21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
#import "OFSeekableStream.h"
#import "OFString.h"
#import "OFZooArchiveEntry.h"
OF_ASSUME_NONNULL_BEGIN
/**
* @class OFZooArchive OFZooArchive.h ObjFW/OFZooArchive.h
*
* @brief A class for accessing and manipulating Zoo files.
*/
OF_SUBCLASSING_RESTRICTED
@interface OFZooArchive: OFObject
{
OF_KINDOF(OFStream *) _stream;
|
|
|
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
#import "OFSeekableStream.h"
#import "OFString.h"
#import "OFZooArchiveEntry.h"
OF_ASSUME_NONNULL_BEGIN
/**
* @class OFZooArchive OFZooArchive.h ObjFW/ObjFW.h
*
* @brief A class for accessing and manipulating Zoo files.
*/
OF_SUBCLASSING_RESTRICTED
@interface OFZooArchive: OFObject
{
OF_KINDOF(OFStream *) _stream;
|