Summary: Some files relying on -include_pch and therefore they miss Foundation.h and UIKit.h includes. This diff is fixing missing imports Reviewed By: rmaz Differential Revision: D37140239 fbshipit-source-id: bc57921e0c8365e0e9a5a571d607ba40ff1b31f3
24 lines
507 B
Objective-C
24 lines
507 B
Objective-C
/*
|
|
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*/
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
#ifdef FB_SONARKIT_ENABLED
|
|
|
|
/*
|
|
* This class exists to retreive configuration values stored in environment
|
|
* variables.
|
|
*/
|
|
@interface SKEnvironmentVariables : NSObject
|
|
+ (int)getInsecurePort;
|
|
+ (int)getSecurePort;
|
|
+ (int)getAltInsecurePort;
|
|
+ (int)getAltSecurePort;
|
|
@end
|
|
|
|
#endif
|