diff options
author | Joel Fischer <joeljfischer@gmail.com> | 2016-05-25 08:44:23 -0400 |
---|---|---|
committer | Joel Fischer <joeljfischer@gmail.com> | 2016-05-25 08:44:23 -0400 |
commit | fb8e9903a323acaf5fc78819bb3c203567542ab2 (patch) | |
tree | e40665103ac7db492e0a40e34cd92f3390defa55 /SmartDeviceLink/SDLUnregisterAppInterfaceResponse.m | |
parent | f7540a02262832e34c67b0953dd8a1804a046fea (diff) | |
download | sdl_ios-fb8e9903a323acaf5fc78819bb3c203567542ab2.tar.gz |
Shift files into root directory
Diffstat (limited to 'SmartDeviceLink/SDLUnregisterAppInterfaceResponse.m')
-rw-r--r-- | SmartDeviceLink/SDLUnregisterAppInterfaceResponse.m | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/SmartDeviceLink/SDLUnregisterAppInterfaceResponse.m b/SmartDeviceLink/SDLUnregisterAppInterfaceResponse.m new file mode 100644 index 000000000..6bebbe83d --- /dev/null +++ b/SmartDeviceLink/SDLUnregisterAppInterfaceResponse.m @@ -0,0 +1,23 @@ +// SDLUnregisterAppInterfaceResponse.m +// + + +#import "SDLUnregisterAppInterfaceResponse.h" + +#import "SDLNames.h" + +@implementation SDLUnregisterAppInterfaceResponse + +- (instancetype)init { + if (self = [super initWithName:NAMES_UnregisterAppInterface]) { + } + return self; +} + +- (instancetype)initWithDictionary:(NSMutableDictionary *)dict { + if (self = [super initWithDictionary:dict]) { + } + return self; +} + +@end |