214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
|
+ (instancetype)fileIRIWithPath: (OFString *)path;
/**
* @brief Creates a new IRI with the specified local file path.
*
* @param path The local file path
* @param isDirectory Whether the path is a directory, in which case a slash is
* appened if there is no slash yet
* @return An initialized OFIRI
*/
+ (instancetype)fileIRIWithPath: (OFString *)path
isDirectory: (bool)isDirectory;
#endif
/**
|
|
|
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
|
+ (instancetype)fileIRIWithPath: (OFString *)path;
/**
* @brief Creates a new IRI with the specified local file path.
*
* @param path The local file path
* @param isDirectory Whether the path is a directory, in which case a slash is
* appended if there is no slash yet
* @return An initialized OFIRI
*/
+ (instancetype)fileIRIWithPath: (OFString *)path
isDirectory: (bool)isDirectory;
#endif
/**
|
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
|
/**
* @brief Initializes an already allocated OFIRI with the specified local file
* path.
*
* @param path The local file path
* @param isDirectory Whether the path is a directory, in which case a slash is
* appened if there is no slash yet
* @return An initialized OFIRI
*/
- (instancetype)initFileIRIWithPath: (OFString *)path
isDirectory: (bool)isDirectory;
#endif
- (instancetype)init OF_UNAVAILABLE;
|
|
|
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
|
/**
* @brief Initializes an already allocated OFIRI with the specified local file
* path.
*
* @param path The local file path
* @param isDirectory Whether the path is a directory, in which case a slash is
* appended if there is no slash yet
* @return An initialized OFIRI
*/
- (instancetype)initFileIRIWithPath: (OFString *)path
isDirectory: (bool)isDirectory;
#endif
- (instancetype)init OF_UNAVAILABLE;
|