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