summaryrefslogtreecommitdiff
path: root/SmartDeviceLink/SDLSetDisplayLayoutResponse.h
diff options
context:
space:
mode:
Diffstat (limited to 'SmartDeviceLink/SDLSetDisplayLayoutResponse.h')
-rw-r--r--SmartDeviceLink/SDLSetDisplayLayoutResponse.h29
1 files changed, 29 insertions, 0 deletions
diff --git a/SmartDeviceLink/SDLSetDisplayLayoutResponse.h b/SmartDeviceLink/SDLSetDisplayLayoutResponse.h
new file mode 100644
index 000000000..7838ae0a6
--- /dev/null
+++ b/SmartDeviceLink/SDLSetDisplayLayoutResponse.h
@@ -0,0 +1,29 @@
+// SDLSetDisplayLayoutResponse.h
+//
+
+#import "SDLRPCResponse.h"
+
+@class SDLDisplayCapabilities;
+@class SDLPresetBankCapabilities;
+
+
+/**
+ * Set Display Layout Response is sent, when SetDisplayLayout has been called
+ *
+ * Since SmartDeviceLink 2.0
+ */
+@interface SDLSetDisplayLayoutResponse : SDLRPCResponse {
+}
+
+/**
+ * @abstract Constructs a new SDLSetDisplayLayoutResponse object
+ */
+- (instancetype)init;
+- (instancetype)initWithDictionary:(NSMutableDictionary *)dict;
+
+@property (strong) SDLDisplayCapabilities *displayCapabilities;
+@property (strong) NSMutableArray *buttonCapabilities;
+@property (strong) NSMutableArray *softButtonCapabilities;
+@property (strong) SDLPresetBankCapabilities *presetBankCapabilities;
+
+@end