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


#import "SDLChangeRegistrationResponse.h"

#import "NSMutableDictionary+Store.h"
#import "SDLNames.h"

@implementation SDLChangeRegistrationResponse

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

@end