summaryrefslogtreecommitdiff
path: root/SmartDeviceLink/SDLShowConstantTBTResponse.m
diff options
context:
space:
mode:
Diffstat (limited to 'SmartDeviceLink/SDLShowConstantTBTResponse.m')
-rw-r--r--SmartDeviceLink/SDLShowConstantTBTResponse.m23
1 files changed, 23 insertions, 0 deletions
diff --git a/SmartDeviceLink/SDLShowConstantTBTResponse.m b/SmartDeviceLink/SDLShowConstantTBTResponse.m
new file mode 100644
index 000000000..995b16e1c
--- /dev/null
+++ b/SmartDeviceLink/SDLShowConstantTBTResponse.m
@@ -0,0 +1,23 @@
+// SDLShowConstantTBTResponse.m
+//
+
+
+#import "SDLShowConstantTBTResponse.h"
+
+#import "SDLNames.h"
+
+@implementation SDLShowConstantTBTResponse
+
+- (instancetype)init {
+ if (self = [super initWithName:NAMES_ShowConstantTBT]) {
+ }
+ return self;
+}
+
+- (instancetype)initWithDictionary:(NSMutableDictionary *)dict {
+ if (self = [super initWithDictionary:dict]) {
+ }
+ return self;
+}
+
+@end