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

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

#import "SDLDebugTool.h"


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

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

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


@end