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