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