Overview
| Comment: | Work around Doxygen shortcomings |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
2425966b66c81ddf932ca5860b43d3a4 |
| User & Date: | js on 2016-03-12 21:19:22 |
| Other Links: | manifest | tags |
Context
|
2016-03-13
| ||
| 10:24 | OFStdIOStream_Win32Console: Improve reading (check-in: 566d4df603 user: js tags: trunk) | |
|
2016-03-12
| ||
| 21:19 | Work around Doxygen shortcomings (check-in: 2425966b66 user: js tags: trunk) | |
| 20:28 | Properly handle UTF-8 in Win32 console (check-in: 3e1b6bccbc user: js tags: trunk) | |
Changes
Modified Doxyfile from [6815d9887c] to [6f66b97d5c].
| ︙ | ︙ | |||
9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 | PREDEFINED = DOXYGEN \ OF_HAVE_BLOCKS \ OF_HAVE_FILES \ OF_HAVE_SOCKETS \ OF_HAVE_THREADS \ OF_NO_RETURN \ OF_NO_RETURN_FUNC \ OF_SENTINEL \ OF_REQUIRES_SUPER \ OF_RETURNS_RETAINED \ OF_RETURNS_NOT_RETAINED \ OF_RETURNS_INNER_POINTER \ OF_ROOT_CLASS \ OF_CONSUMED \ OF_WEAK_UNAVAILABLE MACRO_EXPANSION = YES EXPAND_ONLY_PREDEF = YES IGNORE_PREFIX = OF of_ | > | 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 | PREDEFINED = DOXYGEN \ OF_HAVE_BLOCKS \ OF_HAVE_FILES \ OF_HAVE_SOCKETS \ OF_HAVE_THREADS \ OF_NO_RETURN \ OF_NO_RETURN_FUNC \ OF_NULLABLE_PROPERTY \ OF_SENTINEL \ OF_REQUIRES_SUPER \ OF_RETURNS_RETAINED \ OF_RETURNS_NOT_RETAINED \ OF_RETURNS_INNER_POINTER \ OF_ROOT_CLASS \ OF_CONSUMED \ OF_WEAK_UNAVAILABLE MACRO_EXPANSION = YES EXPAND_ONLY_PREDEF = YES IGNORE_PREFIX = OF of_ |
Modified src/OFIntrospection.h from [d713855550] to [8ff788135d].
| ︙ | ︙ | |||
15 16 17 18 19 20 21 | */ #import "OFObject.h" OF_ASSUME_NONNULL_BEGIN @class OFString; | < > | 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 |
*/
#import "OFObject.h"
OF_ASSUME_NONNULL_BEGIN
@class OFString;
@class OFArray OF_GENERIC(ObjectType);
#ifndef DOXYGEN
@class OFMutableArray OF_GENERIC(ObjectType);
#endif
enum {
OF_PROPERTY_READONLY = 0x01,
OF_PROPERTY_ASSIGN = 0x04,
OF_PROPERTY_READWRITE = 0x08,
|
| ︙ | ︙ |
Modified src/OFOptionsParser.h from [b903dcedef] to [f9c27dbf02].
| ︙ | ︙ | |||
78 79 80 81 82 83 84 | /*! * The last parsed option. * * If @ref nextOption returned `?` or `:`, this returns the option which was * unknown or for which the argument was missing.@n * If this returns `-`, the last option is only available as a long option (see | | | 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 | /*! * The last parsed option. * * If @ref nextOption returned `?` or `:`, this returns the option which was * unknown or for which the argument was missing.@n * If this returns `-`, the last option is only available as a long option (see * lastLongOption). */ @property (readonly) of_unichar_t lastOption; /*! * The long option for the last parsed option, or `nil` if the last parsed * option was not passed as a long option by the user. * |
| ︙ | ︙ |