summaryrefslogtreecommitdiff
path: root/SmartDeviceLink-iOS/SmartDeviceLink/SDLListFiles.h
diff options
context:
space:
mode:
Diffstat (limited to 'SmartDeviceLink-iOS/SmartDeviceLink/SDLListFiles.h')
-rw-r--r--SmartDeviceLink-iOS/SmartDeviceLink/SDLListFiles.h20
1 files changed, 17 insertions, 3 deletions
diff --git a/SmartDeviceLink-iOS/SmartDeviceLink/SDLListFiles.h b/SmartDeviceLink-iOS/SmartDeviceLink/SDLListFiles.h
index 4e1c63cb0..6e5c7f690 100644
--- a/SmartDeviceLink-iOS/SmartDeviceLink/SDLListFiles.h
+++ b/SmartDeviceLink-iOS/SmartDeviceLink/SDLListFiles.h
@@ -1,13 +1,27 @@
// SDLListFiles.h
//
-// Copyright (c) 2014 Ford Motor Company. All rights reserved.
+
#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
+ */
-(id) init;
+/**
+ * Constructs a new SDLListFiles object indicated by the NSMutableDictionary parameter
+ * <p>
+ *
+ * @param dict The NSMutableDictionary to use
+ */
-(id) initWithDictionary:(NSMutableDictionary*) dict;
-
@end