Overview
Comment: | Fix documentation for mutable classes
The immutable header should always be imported instead. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | 1.0 |
Files: | files | file ages | folders |
SHA3-256: |
06926ebe58050b0cd17230484c7f3424 |
User & Date: | js on 2024-03-02 17:58:52 |
Other Links: | branch diff | manifest | tags |
Context
2024-03-02
| ||
21:20 | Minor documentation fix check-in: b9f69f358f user: js tags: 1.0 | |
17:58 | Fix documentation for mutable classes check-in: 06926ebe58 user: js tags: 1.0 | |
17:58 | Fix documentation for mutable classes check-in: 18045dffca user: js tags: trunk | |
15:06 | Fix linker warning on macOS/iOS check-in: 9aa5bfa889 user: js tags: 1.0 | |
Changes
Modified src/OFMutableArchiveEntry.h from [b33a39ff2a] to [28b60b2b5b].
︙ | ︙ | |||
14 15 16 17 18 19 20 | */ #import "OFArchiveEntry.h" OF_ASSUME_NONNULL_BEGIN /** | | < | 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 | */ #import "OFArchiveEntry.h" OF_ASSUME_NONNULL_BEGIN /** * @protocol OFMutableArchiveEntry OFArchiveEntry.h ObjFW/OFArchiveEntry.h * * @brief A class which represents a mutable entry in an archive. */ @protocol OFMutableArchiveEntry <OFArchiveEntry> /** * @brief The file name of the entry. |
︙ | ︙ |
Modified src/OFMutableData.h from [c6c96cb2c2] to [92425754e1].
︙ | ︙ | |||
14 15 16 17 18 19 20 | */ #import "OFData.h" OF_ASSUME_NONNULL_BEGIN /** | | | 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 | */ #import "OFData.h" OF_ASSUME_NONNULL_BEGIN /** * @class OFMutableData OFData.h ObjFW/OFData.h * * @brief A class for storing and manipulating arbitrary data in an array. */ @interface OFMutableData: OFData /** * @brief All items of the OFMutableData as a C array. * |
︙ | ︙ |
Modified src/OFMutableIRI.h from [d2091df092] to [ec0dda1233].
︙ | ︙ | |||
14 15 16 17 18 19 20 | */ #import "OFIRI.h" OF_ASSUME_NONNULL_BEGIN /** | | | 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 | */ #import "OFIRI.h" OF_ASSUME_NONNULL_BEGIN /** * @class OFMutableIRI OFIRI.h ObjFW/OFIRI.h * * @brief A class for representing IRIs, URIs, URLs and URNs, for parsing them, * accessing parts of them as well as modifying them. * * This class follows RFC 3976 and RFC 3987. */ @interface OFMutableIRI: OFIRI |
︙ | ︙ |
Modified src/OFMutableLHAArchiveEntry.h from [e75545549c] to [bf622fc22c].
︙ | ︙ | |||
15 16 17 18 19 20 21 | #import "OFLHAArchiveEntry.h" #import "OFMutableArchiveEntry.h" OF_ASSUME_NONNULL_BEGIN /** | | < | 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 | #import "OFLHAArchiveEntry.h" #import "OFMutableArchiveEntry.h" OF_ASSUME_NONNULL_BEGIN /** * @class OFMutableLHAArchiveEntry OFLHAArchiveEntry.h ObjFW/OFHAArchiveEntry.h * * @brief A class which represents a mutable entry in an LHA archive. */ @interface OFMutableLHAArchiveEntry: OFLHAArchiveEntry <OFMutableArchiveEntry> { OF_RESERVE_IVARS(OFMutableLHAArchiveEntry, 4) } |
︙ | ︙ |
Modified src/OFMutablePair.h from [aaa198970d] to [9daa99b167].
︙ | ︙ | |||
14 15 16 17 18 19 20 | */ #import "OFPair.h" OF_ASSUME_NONNULL_BEGIN /** | | | 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 | */ #import "OFPair.h" OF_ASSUME_NONNULL_BEGIN /** * @class OFMutablePair OFPair.h ObjFW/OFPair.h * * @brief A class for storing a pair of two objects. */ @interface OFMutablePair OF_GENERIC(FirstType, SecondType): OFPair OF_GENERIC(FirstType, SecondType) #if !defined(OF_HAVE_GENERICS) && !defined(DOXYGEN) # define FirstType id |
︙ | ︙ |
Modified src/OFMutableTarArchiveEntry.h from [ccb599d957] to [1adaffd665].
︙ | ︙ | |||
15 16 17 18 19 20 21 | #import "OFTarArchiveEntry.h" #import "OFMutableArchiveEntry.h" OF_ASSUME_NONNULL_BEGIN /** | | < | 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 | #import "OFTarArchiveEntry.h" #import "OFMutableArchiveEntry.h" OF_ASSUME_NONNULL_BEGIN /** * @class OFMutableTarArchiveEntry OFTarArchiveEntry.h ObjFW/OFTarArchiveEntry.h * * @brief A class which represents a mutable entry of a tar archive. */ @interface OFMutableTarArchiveEntry: OFTarArchiveEntry <OFMutableArchiveEntry> { OF_RESERVE_IVARS(OFMutableTarArchiveEntry, 4) } |
︙ | ︙ |
Modified src/OFMutableTriple.h from [525a6f0eb6] to [d4df8d3fda].
︙ | ︙ | |||
14 15 16 17 18 19 20 | */ #import "OFTriple.h" OF_ASSUME_NONNULL_BEGIN /** | | | 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 | */ #import "OFTriple.h" OF_ASSUME_NONNULL_BEGIN /** * @class OFMutableTriple OFTriple.h ObjFW/OFTriple.h * * @brief A class for storing a triple of three objects. */ @interface OFMutableTriple OF_GENERIC(FirstType, SecondType, ThirdType): OFTriple OF_GENERIC(FirstType, SecondType, ThirdType) #if !defined(OF_HAVE_GENERICS) && !defined(DOXYGEN) # define FirstType id |
︙ | ︙ |
Modified src/OFMutableZIPArchiveEntry.h from [2122d6601a] to [2c44770ad2].
︙ | ︙ | |||
15 16 17 18 19 20 21 | #import "OFZIPArchiveEntry.h" #import "OFMutableArchiveEntry.h" OF_ASSUME_NONNULL_BEGIN /** | | < | 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 | #import "OFZIPArchiveEntry.h" #import "OFMutableArchiveEntry.h" OF_ASSUME_NONNULL_BEGIN /** * @class OFMutableZIPArchiveEntry OFZIPArchiveEntry.h ObjFW/OFZIPArchiveEntry.h * * @brief A class which represents a mutable entry in the central directory of * a ZIP archive. */ @interface OFMutableZIPArchiveEntry: OFZIPArchiveEntry <OFMutableArchiveEntry> { OF_RESERVE_IVARS(OFMutableZIPArchiveEntry, 4) |
︙ | ︙ |