summaryrefslogtreecommitdiff
path: root/SmartDeviceLink/SDLPresetBankCapabilities.h
diff options
context:
space:
mode:
Diffstat (limited to 'SmartDeviceLink/SDLPresetBankCapabilities.h')
-rw-r--r--SmartDeviceLink/SDLPresetBankCapabilities.h33
1 files changed, 33 insertions, 0 deletions
diff --git a/SmartDeviceLink/SDLPresetBankCapabilities.h b/SmartDeviceLink/SDLPresetBankCapabilities.h
new file mode 100644
index 000000000..edf544f8b
--- /dev/null
+++ b/SmartDeviceLink/SDLPresetBankCapabilities.h
@@ -0,0 +1,33 @@
+// SDLPresetBankCapabilities.h
+//
+
+
+#import "SDLRPCMessage.h"
+
+/**
+ * Contains information about on-screen preset capabilities.
+ *
+ * @since SDL 2.0
+ */
+@interface SDLPresetBankCapabilities : SDLRPCStruct {
+}
+
+/**
+ * @abstract Constructs a newly allocated SDLPresetBankCapabilities object
+ */
+- (instancetype)init;
+
+/**
+ * @abstract Constructs a newly allocated SDLPresetBankCapabilities object indicated by the dictionary parameter
+ * @param dict The dictionary to use
+ */
+- (instancetype)initWithDictionary:(NSMutableDictionary *)dict;
+
+/**
+ * @abstract If Onscreen custom presets are available.
+ *
+ * Required, Boolean
+ */
+@property (strong) NSNumber *onScreenPresetsAvailable;
+
+@end