summaryrefslogtreecommitdiff
path: root/SmartDeviceLink/SDLMenuManager.h
blob: 1163c0b44f74a15b57c6c52604249139de8b7c35 (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
//
//  SDLMenuManager.h
//  SmartDeviceLink
//
//  Created by Joel Fischer on 4/9/18.
//  Copyright © 2018 smartdevicelink. All rights reserved.
//

#import <Foundation/Foundation.h>

@class SDLMenuCell;
@class SDLVoiceCommand;

/**
 The handler run when the update has completed

 @param error An error if the update failed and an error occurred
 */
typedef void(^SDLMenuUpdateCompletionHandler)(NSError *__nullable error);

@interface SDLMenuManager : NSObject

@property (copy, nonatomic) NSArray<SDLMenuCell *> *menuCells;
@property (copy, nonatomic) NSArray<SDLVoiceCommand *> *voiceCommands;

@end