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