summaryrefslogtreecommitdiff
path: root/SmartDeviceLink/SDLUnregisterAppInterface.m
blob: 1791f592ecc134d6755795745a72a5df78df5e40 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
//  SDLUnregisterAppInterface.m
//


#import "SDLUnregisterAppInterface.h"

#import "SDLNames.h"

@implementation SDLUnregisterAppInterface

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

- (instancetype)initWithDictionary:(NSMutableDictionary<NSString *, id> *)dict {
    if (self = [super initWithDictionary:dict]) {
    }
    return self;
}

@end