summaryrefslogtreecommitdiff
path: root/Example Apps/Example ObjC/MenuManager.h
diff options
context:
space:
mode:
Diffstat (limited to 'Example Apps/Example ObjC/MenuManager.h')
-rw-r--r--Example Apps/Example ObjC/MenuManager.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/Example Apps/Example ObjC/MenuManager.h b/Example Apps/Example ObjC/MenuManager.h
index a7c1404c1..a78b2d077 100644
--- a/Example Apps/Example ObjC/MenuManager.h
+++ b/Example Apps/Example ObjC/MenuManager.h
@@ -9,6 +9,7 @@
#import <Foundation/Foundation.h>
@class PerformInteractionManager;
+@class RemoteControlManager;
@class SDLManager;
@class SDLMenuCell;
@class SDLVoiceCommand;
@@ -17,7 +18,7 @@ NS_ASSUME_NONNULL_BEGIN
@interface MenuManager : NSObject
-+ (NSArray<SDLMenuCell *> *)allMenuItemsWithManager:(SDLManager *)manager performManager:(PerformInteractionManager *)performManager;
++ (NSArray<SDLMenuCell *> *)allMenuItemsWithManager:(SDLManager *)manager performManager:(PerformInteractionManager *)performManager remoteManager:(RemoteControlManager *)remoteManager;
+ (NSArray<SDLVoiceCommand *> *)allVoiceMenuItemsWithManager:(SDLManager *)manager;
@end