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

#import "SDLAddSubMenuResponse.h"

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

@implementation SDLAddSubMenuResponse

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

@end