summaryrefslogtreecommitdiff
path: root/SmartDeviceLink/SDLGetWaypoints.m
blob: 79b485f51aeaae5d5e6a294dbb3bb2a1be155c0f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
//  SDLGetWaypoints.m
//

#import "SDLGetWaypoints.h"

#import "SDLNames.h"

NS_ASSUME_NONNULL_BEGIN

@implementation SDLGetWayPoints

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


- (instancetype)initWithType:(SDLWaypointType)type {
    self = [self init];
    if (!self) {
        return nil;
    }

    self.waypointType = type;

    return self;
}

- (void)setWaypointType:(nullable SDLWaypointType)waypointType {
    if (waypointType != nil) {
        parameters[SDLNameWaypointType] = waypointType;
    } else {
        [parameters removeObjectForKey:SDLNameWaypointType];
    }
}

- (nullable SDLWaypointType)waypointType {
    return parameters[SDLNameWaypointType];
}

@end

@implementation SDLGetWaypoints

@end

NS_ASSUME_NONNULL_END