summaryrefslogtreecommitdiff
path: root/SmartDeviceLink/SDLOnWaypointChange.m
blob: e94c63bdf5e578741f5a6f2e61b02f8843e6d5c3 (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
//  SDLOnWaypointChange.m
//

#import "SDLOnWaypointChange.h"

#import "SDLNames.h"

@implementation SDLOnWaypointChange

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

- (void)setWaypoints:(NSArray<SDLLocationDetails *> *)waypoints {
    [self setObject:waypoints forName:SDLNameWaypoints];
}

- (NSArray<SDLLocationDetails *> *)waypoints {
    return [self objectForName:SDLNameWaypoints];
}

@end