Differences From Artifact [1cd9e552cd]:
- File src/bridge/OFDictionary_NSDictionary.h — part of check-in [13965af7a1] at 2017-05-09 21:25:46 on branch trunk — Add a few missing OF_ASSUME_NONNULL_{BEGIN,END} (user: js, size: 896) [annotate] [blame] [check-ins using]
To Artifact [c4deae7130]:
- File
src/bridge/OFDictionary_NSDictionary.h
— part of check-in
[fc64538f06]
at
2017-10-15 20:55:18
on branch trunk
— bridge: Use @import ObjFW when using modules
This makes it possible to use the bridge with Swift. (user: js, size: 981) [annotate] [blame] [check-ins using]
︙ | ︙ | |||
13 14 15 16 17 18 19 | * LICENSE.GPLv2 or LICENSE.GPLv3 respectively included in the packaging of this * file. */ #ifdef OF_BRIDGE_LOCAL_INCLUDES # import "OFDictionary.h" #else | > > > | > | 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 | * LICENSE.GPLv2 or LICENSE.GPLv3 respectively included in the packaging of this * file. */ #ifdef OF_BRIDGE_LOCAL_INCLUDES # import "OFDictionary.h" #else # if defined(__has_feature) && __has_feature(modules) @import ObjFW; # else # import <ObjFW/OFDictionary.h> # endif #endif OF_ASSUME_NONNULL_BEGIN @class NSDictionary; @interface OFDictionary_NSDictionary: OFDictionary |
︙ | ︙ |