AFNetworking/Tests/AFNetworking-Prefix.pch
Blake Watters 4f04b35378 Reorganize testing setup
* Eliminate static library and framework targets
* Migrate all testing infrastructure and code to Tests/
* Nest CocoaPods setup for testing under Tests/
* Remove explicit dependencies from shared schemes
2013-05-11 13:18:43 -04:00

16 lines
481 B
Text

//
// Prefix header for all source files of the 'AFNetworking' target in the 'AFNetworking' project
//
#ifdef __OBJC__
#import <Foundation/Foundation.h>
#import <Availability.h>
#if __IPHONE_OS_VERSION_MIN_REQUIRED
#import <SystemConfiguration/SystemConfiguration.h>
#import <MobileCoreServices/MobileCoreServices.h>
#else
#import <SystemConfiguration/SystemConfiguration.h>
#import <CoreServices/CoreServices.h>
#endif
#endif