Files
flipper/iOS/FlipperKit/FlipperKitCertificateProvider.h
Ruslan Latypov e43884cf11 fixing more imports
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
2022-06-14 13:37:04 -07:00

36 lines
1.0 KiB
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
#import <Flipper/FlipperCertificateExchangeMedium.h>
typedef enum FlipperCertificateExchangeMedium
FlipperKitCertificateExchangeMedium;
/**
Represents a CPP Certificate Provider to be used by FlipperClient
*/
@protocol FlipperKitCertificateProvider<NSObject>
- (_Nonnull instancetype)initCPPCertificateProvider;
- (void* _Nonnull)
getCPPCertificateProvider; // Returning it as void* as the file needs to
// have no cpp for it to be compatible with
// Swift. The pointer returned should point to
// std::shared_ptr<FlipperCertificateProvider>
- (void)setCertificateExchangeMedium:
(FlipperKitCertificateExchangeMedium)medium;
@optional
- (void)setAuthToken:(nullable NSString*)authToken;
@end
#endif