summaryrefslogtreecommitdiff
path: root/SmartDeviceLink/SDLUnregisterAppInterfaceResponse.m
blob: ca1b8953c0db762dc9ae2d3f6a3fb74481d4470b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//  SDLUnregisterAppInterfaceResponse.m
//


#import "SDLUnregisterAppInterfaceResponse.h"

#import "SDLNames.h"

@implementation SDLUnregisterAppInterfaceResponse

- (instancetype)init {
    if (self = [super initWithName:SDLNameUnregisterAppInterface]) {
    }
    return self;
}

@end