summaryrefslogtreecommitdiff
path: root/SmartDeviceLink-iOS/SmartDeviceLink/SDLSetGlobalPropertiesResponse.h
diff options
context:
space:
mode:
Diffstat (limited to 'SmartDeviceLink-iOS/SmartDeviceLink/SDLSetGlobalPropertiesResponse.h')
-rw-r--r--SmartDeviceLink-iOS/SmartDeviceLink/SDLSetGlobalPropertiesResponse.h15
1 files changed, 14 insertions, 1 deletions
diff --git a/SmartDeviceLink-iOS/SmartDeviceLink/SDLSetGlobalPropertiesResponse.h b/SmartDeviceLink-iOS/SmartDeviceLink/SDLSetGlobalPropertiesResponse.h
index ea7b60e14..06438af9e 100644
--- a/SmartDeviceLink-iOS/SmartDeviceLink/SDLSetGlobalPropertiesResponse.h
+++ b/SmartDeviceLink-iOS/SmartDeviceLink/SDLSetGlobalPropertiesResponse.h
@@ -1,13 +1,26 @@
// SDLSetGlobalPropertiesResponse.h
//
-// Copyright (c) 2014 Ford Motor Company. All rights reserved.
+
#import "SDLRPCResponse.h"
+/**
+ * Set Global Properties Response is sent, when SDLSetGlobalProperties has been called
+ *
+ * Since SmartDeviceLink 1.0
+ */
@interface SDLSetGlobalPropertiesResponse : SDLRPCResponse {}
+/**
+ * @abstract Constructs a new SDLSetGlobalPropertiesResponse object
+ */
-(id) init;
+/**
+ * @abstract Constructs a new SDLSetGlobalPropertiesResponse object indicated by the NSMutableDictionary
+ * parameter
+ * @param dict The NSMutableDictionary to use
+ */
-(id) initWithDictionary:(NSMutableDictionary*) dict;
@end