hank
2018-08-30 7be7ad711909f384c4a9bc0a7f2991a50ae69049
commit | author | age
a0a843 1 //
H 2 //  Prefix header
3 //
4 //  The contents of this file are implicitly included at the beginning of every source file.
5 //
6
7 #ifdef __OBJC__
7be7ad 8     #import <UIKit/UIKit.h>
a0a843 9     #import <Foundation/Foundation.h>
H 10     #import <TwitterCore/TWTRDefines.h>
11     #define IS_UIKIT_AVAILABLE (TARGET_OS_IOS || TARGET_OS_TV)
12
13     #ifndef NS_DESIGNATED_INITIALIZER
14         #if __has_attribute(objc_designated_initializer)
15             #define NS_DESIGNATED_INITIALIZER __attribute__((objc_designated_initializer))
16         #else
17             #define NS_DESIGNATED_INITIALIZER
18         #endif
19     #endif
20
655e66 21     #import "../../libextobjc/EXTKeyPathCoding.h"
H 22     #import "../../libextobjc/EXTScope.h"
a0a843 23 #endif