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