Rename iOS SonarConnection to FlipperConnection

Summary: Rename iOS SonarConnection to FlipperConnection

Reviewed By: jknoxville

Differential Revision: D9916509

fbshipit-source-id: 7253ab37f5ab28dc8063fb6b3765afd1c2aee645
This commit is contained in:
Pritesh Nandgaonkar
2018-09-18 11:56:20 -07:00
committed by Facebook Github Bot
parent f970e60edd
commit fdc4f7a5c8
11 changed files with 22 additions and 22 deletions

View File

@@ -6,13 +6,13 @@
*
*/
#import <Sonar/SonarConnection.h>
#import <SonarKit/SonarConnection.h>
#import <SonarKit/FlipperConnection.h>
/**
SonarCppBridgingConnection is a simple ObjC wrapper around SonarConnection
that forwards messages to the underlying C++ connection. This class allows
pure Objective-C plugins to send messages to the underlying connection.
*/
@interface SonarCppBridgingConnection : NSObject <SonarConnection>
@interface SonarCppBridgingConnection : NSObject <FlipperConnection>
- (instancetype)initWithCppConnection:(std::shared_ptr<facebook::flipper::SonarConnection>)conn;
@end