summaryrefslogtreecommitdiff
path: root/SmartDeviceLink-iOS/SmartDeviceLink/SDLSetAppIcon.h
diff options
context:
space:
mode:
Diffstat (limited to 'SmartDeviceLink-iOS/SmartDeviceLink/SDLSetAppIcon.h')
-rw-r--r--SmartDeviceLink-iOS/SmartDeviceLink/SDLSetAppIcon.h22
1 files changed, 21 insertions, 1 deletions
diff --git a/SmartDeviceLink-iOS/SmartDeviceLink/SDLSetAppIcon.h b/SmartDeviceLink-iOS/SmartDeviceLink/SDLSetAppIcon.h
index a23417d9c..1fcd6e1dc 100644
--- a/SmartDeviceLink-iOS/SmartDeviceLink/SDLSetAppIcon.h
+++ b/SmartDeviceLink-iOS/SmartDeviceLink/SDLSetAppIcon.h
@@ -1,15 +1,35 @@
// SDLSetAppIcon.h
//
-// Copyright (c) 2014 Ford Motor Company. All rights reserved.
+
#import "SDLRPCRequest.h"
+/**
+ * Used to set existing local file on SDL as the app's icon. Not supported on
+ * first generation SDL modules.
+ * <p>
+ *
+ * Since SmartDeviceLink 2.0
+ */
@interface SDLSetAppIcon : SDLRPCRequest {}
+/**
+ * @abstract Constructs a new SDLSetAppIcon object
+ */
-(id) init;
+/**
+ * @abstract Constructs a new SDLSetAppIcon object indicated by the NSMutableDictionary parameter
+ * @param dict The NSMutableDictionary to use
+ */
-(id) initWithDictionary:(NSMutableDictionary*) dict;
+/**
+ * @abstract A file reference name
+ * @discussion A String value representing a file reference name
+ * <p>
+ * <b>Notes: </b>Maxlength=500
+ */
@property(strong) NSString* syncFileName;
@end