summaryrefslogtreecommitdiff
path: root/SmartDeviceLink/SDLConsoleController.h
diff options
context:
space:
mode:
Diffstat (limited to 'SmartDeviceLink/SDLConsoleController.h')
-rw-r--r--SmartDeviceLink/SDLConsoleController.h21
1 files changed, 21 insertions, 0 deletions
diff --git a/SmartDeviceLink/SDLConsoleController.h b/SmartDeviceLink/SDLConsoleController.h
new file mode 100644
index 000000000..5dec97948
--- /dev/null
+++ b/SmartDeviceLink/SDLConsoleController.h
@@ -0,0 +1,21 @@
+// SDLConsoleController.h
+//
+
+#import <Foundation/Foundation.h>
+#import <UIKit/UIKit.h>
+
+#import "SDLDebugTool.h"
+
+
+@interface SDLConsoleController : UITableViewController <SDLDebugToolConsole> {
+ NSMutableArray *messageList;
+ BOOL atBottom;
+ NSDateFormatter *dateFormatter;
+}
+
+@property (strong, readonly) NSMutableArray *messageList;
+
+- (instancetype)initWithTableView:(UITableView *)tableView;
+
+
+@end