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