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


#import "SDLSyncPDataResponse.h"

#import "SDLNames.h"

@implementation SDLSyncPDataResponse

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

@end