summaryrefslogtreecommitdiff
path: root/SmartDeviceLink/SDLListFiles.h
diff options
context:
space:
mode:
Diffstat (limited to 'SmartDeviceLink/SDLListFiles.h')
-rw-r--r--SmartDeviceLink/SDLListFiles.h27
1 files changed, 27 insertions, 0 deletions
diff --git a/SmartDeviceLink/SDLListFiles.h b/SmartDeviceLink/SDLListFiles.h
new file mode 100644
index 000000000..8a58d8639
--- /dev/null
+++ b/SmartDeviceLink/SDLListFiles.h
@@ -0,0 +1,27 @@
+// SDLListFiles.h
+//
+
+
+#import "SDLRPCRequest.h"
+
+/**
+ * Requests the current list of resident filenames for the registered app. Not
+ * supported on First generation SDL vehicles
+ * <p>
+ *
+ * Since <b>SmartDeviceLink 2.0</b>
+ */
+@interface SDLListFiles : SDLRPCRequest {
+}
+/**
+ * Constructs a new SDLListFiles object
+ */
+- (instancetype)init;
+/**
+ * Constructs a new SDLListFiles object indicated by the dictionary parameter
+ * <p>
+ *
+ * @param dict The dictionary to use
+ */
+- (instancetype)initWithDictionary:(NSMutableDictionary *)dict;
+@end