hank
2018-04-18 115060372060932bcbf35c8d34827ecd046fd7cf
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__
8     #import <Foundation/Foundation.h>
9     #import <TwitterCore/TWTRDefines.h>
10     #import <TwitterShareExtensionUI/TwitterShareExtensionUI.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