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
34 lines
913 B
Objective-C
34 lines
913 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>
|
|
#import <TargetConditionals.h>
|
|
|
|
#ifdef FB_SONARKIT_ENABLED
|
|
#if !TARGET_OS_OSX
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#include "FlipperStateUpdateListener.h"
|
|
|
|
@interface StateTableDataSource : NSObject<UITableViewDataSource>
|
|
@property(strong, nonatomic) NSArray<NSDictionary*>* elements;
|
|
@end
|
|
|
|
@interface FlipperDiagnosticsViewController
|
|
: UIViewController<FlipperStateUpdateListener>
|
|
@property(strong, nonatomic) StateTableDataSource* tableDataSource;
|
|
@property(strong, nonatomic) UILabel* stateLabel;
|
|
@property(strong, nonatomic) UITableView* stateTable;
|
|
@property(strong, nonatomic) UIScrollView* scrollView;
|
|
@property(strong, nonatomic) UILabel* logLabel;
|
|
|
|
- (void)onUpdate;
|
|
@end
|
|
|
|
#endif
|
|
#endif
|