summaryrefslogtreecommitdiff
path: root/SmartDeviceLink/SDLPresetBankCapabilities.h
diff options
context:
space:
mode:
authorJoel Fischer <joeljfischer@gmail.com>2016-05-25 08:44:23 -0400
committerJoel Fischer <joeljfischer@gmail.com>2016-05-25 08:44:23 -0400
commitfb8e9903a323acaf5fc78819bb3c203567542ab2 (patch)
treee40665103ac7db492e0a40e34cd92f3390defa55 /SmartDeviceLink/SDLPresetBankCapabilities.h
parentf7540a02262832e34c67b0953dd8a1804a046fea (diff)
downloadsdl_ios-fb8e9903a323acaf5fc78819bb3c203567542ab2.tar.gz
Shift files into root directory
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