summaryrefslogtreecommitdiff
path: root/SmartDeviceLink/SDLUnsubscribeWayPoints.m
blob: 4504eba66c52f912d0f1bc88caadbceea084d363 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
//  SDLUnsubscribeWaypoints.m
//

#import "SDLUnsubscribeWayPoints.h"

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

NS_ASSUME_NONNULL_BEGIN

@implementation SDLUnsubscribeWayPoints

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

@end

NS_ASSUME_NONNULL_END