Differences From Artifact [b207ab823b]:
- File
src/OFFileManager.h
— part of check-in
[f3ccf14461]
at
2017-10-29 21:58:14
on branch trunk
— Convert methods to properties where appropriate
This improves Swift compatibility. (user: js, size: 17114) [annotate] [blame] [check-ins using]
To Artifact [2cebe69c86]:
- File
src/OFFileManager.h
— part of check-in
[a2e849c681]
at
2017-10-30 00:23:35
on branch trunk
— Add class properties where appropriate
This improves Swift compatibility. (user: js, size: 17224) [annotate] [blame] [check-ins using]
︙ | ︙ | |||
39 40 41 42 43 44 45 46 47 48 49 50 51 52 | /*! * @class OFFileManager OFFileManager.h ObjFW/OFFileManager.h * * @brief A class which provides management for files, e.g. reading contents of * directories, deleting files, renaming files, etc. */ @interface OFFileManager: OFObject /*! * The path of the current working directory. */ @property (readonly, nonatomic) OFString *currentDirectoryPath; /*! * The URL of the current working directory. | > > > > | 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 | /*! * @class OFFileManager OFFileManager.h ObjFW/OFFileManager.h * * @brief A class which provides management for files, e.g. reading contents of * directories, deleting files, renaming files, etc. */ @interface OFFileManager: OFObject #ifdef OF_HAVE_CLASS_PROPERTIES @property (class, readonly, nonatomic) OFFileManager *defaultManager; #endif /*! * The path of the current working directory. */ @property (readonly, nonatomic) OFString *currentDirectoryPath; /*! * The URL of the current working directory. |
︙ | ︙ |