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

#import "SDLAlertManeuverResponse.h"

#import "SDLNames.h"

@implementation SDLAlertManeuverResponse

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

@end