summaryrefslogtreecommitdiff
path: root/SmartDeviceLink/SDLShowAppMenuResponse.m
blob: 281079e7b7cbc9c91ee33fca2c90a1b4a48760ca (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
//
//  SDLOpenMenuResponse.m
//  SmartDeviceLink
//
//  Created by Justin Gluck on 7/12/19.
//  Copyright © 2019 smartdevicelink. All rights reserved.
//

#import "SDLShowAppMenuResponse.h"
#import "SDLRPCFunctionNames.h"

@implementation SDLShowAppMenuResponse

#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Wdeprecated-declarations"
- (instancetype)init {
        if (self = [super initWithName:SDLRPCFunctionNameShowAppMenu]) {
        }
        return self;
}
#pragma clang diagnostic pop

@end