summaryrefslogtreecommitdiff
path: root/SmartDeviceLink/SDLConsoleController.h
blob: 26cbd39cb3ea07a13a56e89a35ec188d59be4d66 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
//  SDLConsoleController.h
//

#import <Foundation/Foundation.h>
#import <UIKit/UIKit.h>

#import "SDLDebugTool.h"

NS_ASSUME_NONNULL_BEGIN

@interface SDLConsoleController : UITableViewController <SDLDebugToolConsole> {
    NSMutableArray<NSDictionary<NSString *, id>*> *messageList;
    BOOL atBottom;
    NSDateFormatter *dateFormatter;
}

@property (strong, nonatomic, readonly) NSMutableArray<NSDictionary<NSString *, id>*> *messageList;

- (instancetype)initWithTableView:(UITableView *)tableView;


@end

NS_ASSUME_NONNULL_END