65
66
67
68
69
70
71
72
73
74
75
76
77
78
|
* @param IRI The IRI to the Zoo file
* @param mode The mode for the Zoo file. Valid modes are "r" for reading and
* "w" for creating a new file.
* @return A new, autoreleased OFZooArchive
*/
+ (instancetype)archiveWithIRI: (OFIRI *)IRI mode: (OFString *)mode;
- (instancetype)init OF_UNAVAILABLE;
/**
* @brief Initializes an already allocated OFZooArchive object with the
* specified stream.
*
* @param stream A stream from which the Zoo archive will be read.
|
>
>
>
>
>
>
>
>
>
>
>
|
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
|
* @param IRI The IRI to the Zoo file
* @param mode The mode for the Zoo file. Valid modes are "r" for reading and
* "w" for creating a new file.
* @return A new, autoreleased OFZooArchive
*/
+ (instancetype)archiveWithIRI: (OFIRI *)IRI mode: (OFString *)mode;
/**
* @brief Creates an IRI for accessing the specified file within the specified
* Zoo archive.
*
* @param path The path of the file within the archive
* @param IRI The IRI of the archive
* @return An IRI for accessing the specified file within the specified Zoo
* archive
*/
+ (OFIRI *)IRIForFilePath: (OFString *)path inArchiveWithIRI: (OFIRI *)IRI;
- (instancetype)init OF_UNAVAILABLE;
/**
* @brief Initializes an already allocated OFZooArchive object with the
* specified stream.
*
* @param stream A stream from which the Zoo archive will be read.
|