summaryrefslogtreecommitdiff
path: root/SmartDeviceLink/SDLOnPermissionsChange.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/SDLOnPermissionsChange.h
parentf7540a02262832e34c67b0953dd8a1804a046fea (diff)
downloadsdl_ios-fb8e9903a323acaf5fc78819bb3c203567542ab2.tar.gz
Shift files into root directory
Diffstat (limited to 'SmartDeviceLink/SDLOnPermissionsChange.h')
-rw-r--r--SmartDeviceLink/SDLOnPermissionsChange.h35
1 files changed, 35 insertions, 0 deletions
diff --git a/SmartDeviceLink/SDLOnPermissionsChange.h b/SmartDeviceLink/SDLOnPermissionsChange.h
new file mode 100644
index 000000000..267a63a10
--- /dev/null
+++ b/SmartDeviceLink/SDLOnPermissionsChange.h
@@ -0,0 +1,35 @@
+// SDLOnPermissionsChange.h
+//
+
+#import "SDLRPCNotification.h"
+
+
+/**
+ * Provides update to app of which sets of functions are available
+ *
+ * @since SDL 2.0
+ */
+@interface SDLOnPermissionsChange : SDLRPCNotification {
+}
+
+/**
+ * Constructs a newly allocated SDLOnPermissionsChange object
+ */
+- (instancetype)init;
+
+/**
+ * Constructs a newly allocated SDLOnPermissionsChange object indicated by the dictionary parameter
+ * @param dict The dictionary to use
+ */
+- (instancetype)initWithDictionary:(NSMutableDictionary *)dict;
+
+/**
+ * @abstract Describes change in permissions for a given set of RPCs
+ *
+ * Required, Array of SDLPermissionItem, Array size 0 - 500
+ *
+ * @see SDLPermissionItem
+ */
+@property (strong) NSMutableArray *permissionItem;
+
+@end