summaryrefslogtreecommitdiff
path: root/SmartDeviceLink-iOS/SmartDeviceLink/SDLBodyInformation.h
diff options
context:
space:
mode:
Diffstat (limited to 'SmartDeviceLink-iOS/SmartDeviceLink/SDLBodyInformation.h')
-rw-r--r--SmartDeviceLink-iOS/SmartDeviceLink/SDLBodyInformation.h41
1 files changed, 40 insertions, 1 deletions
diff --git a/SmartDeviceLink-iOS/SmartDeviceLink/SDLBodyInformation.h b/SmartDeviceLink-iOS/SmartDeviceLink/SDLBodyInformation.h
index 1c5399b07..09a9d8051 100644
--- a/SmartDeviceLink-iOS/SmartDeviceLink/SDLBodyInformation.h
+++ b/SmartDeviceLink-iOS/SmartDeviceLink/SDLBodyInformation.h
@@ -1,6 +1,6 @@
// SDLBodyInformation.h
//
-// Copyright (c) 2014 Ford Motor Company. All rights reserved.
+
#import "SDLRPCMessage.h"
@@ -8,17 +8,56 @@
#import "SDLIgnitionStableStatus.h"
#import "SDLIgnitionStatus.h"
+/**
+ * The body information including power modes.
+ */
@interface SDLBodyInformation : SDLRPCStruct {}
+/**
+ * @abstract Constructs a new SDLBodyInformation object
+ */
-(id) init;
+
+/**
+ * @abstract Constructs a new SDLBodyInformation object indicated by the NSMutableDictionary
+ * parameter
+ * @param dict The NSMutableDictionary to use
+ */
-(id) initWithDictionary:(NSMutableDictionary*) dict;
+/**
+ * @abstract References signal "PrkBrkActv_B_Actl".
+ */
@property(strong) NSNumber* parkBrakeActive;
+
+/**
+ * @abstract References signal "Ignition_Switch_Stable". See IgnitionStableStatus.
+ */
@property(strong) SDLIgnitionStableStatus* ignitionStableStatus;
+
+/**
+ * @abstract References signal "Ignition_status". See IgnitionStatus.
+ */
@property(strong) SDLIgnitionStatus* ignitionStatus;
+
+/**
+ * @abstract References signal "DrStatDrv_B_Actl".
+ */
@property(strong) NSNumber* driverDoorAjar;
+
+/**
+ * @abstract References signal "DrStatPsngr_B_Actl".
+ */
@property(strong) NSNumber* passengerDoorAjar;
+
+/**
+ * @abstract References signal "DrStatRl_B_Actl".
+ */
@property(strong) NSNumber* rearLeftDoorAjar;
+
+/**
+ * @abstract References signal "DrStatRr_B_Actl".
+ */
@property(strong) NSNumber* rearRightDoorAjar;
@end