summaryrefslogtreecommitdiff
path: root/SDL_iOS/SmartDeviceLinkProxy/Classes/RPC/SDLOnHMIStatus.h
diff options
context:
space:
mode:
Diffstat (limited to 'SDL_iOS/SmartDeviceLinkProxy/Classes/RPC/SDLOnHMIStatus.h')
-rw-r--r--SDL_iOS/SmartDeviceLinkProxy/Classes/RPC/SDLOnHMIStatus.h21
1 files changed, 21 insertions, 0 deletions
diff --git a/SDL_iOS/SmartDeviceLinkProxy/Classes/RPC/SDLOnHMIStatus.h b/SDL_iOS/SmartDeviceLinkProxy/Classes/RPC/SDLOnHMIStatus.h
new file mode 100644
index 000000000..4ab4549fd
--- /dev/null
+++ b/SDL_iOS/SmartDeviceLinkProxy/Classes/RPC/SDLOnHMIStatus.h
@@ -0,0 +1,21 @@
+//
+// Copyright (c) 2013 Ford Motor Company
+//
+
+#import <Foundation/Foundation.h>
+#import "SDLRPCNotification.h"
+
+#import "SDLHMILevel.h"
+#import "SDLAudioStreamingState.h"
+#import "SDLSystemContext.h"
+
+@interface SDLOnHMIStatus : SDLRPCNotification {}
+
+-(id) init;
+-(id) initWithDictionary:(NSMutableDictionary*) dict;
+
+@property(assign) SDLHMILevel* hmiLevel;
+@property(assign) SDLAudioStreamingState* audioStreamingState;
+@property(assign) SDLSystemContext* systemContext;
+
+@end