summaryrefslogtreecommitdiff
path: root/SmartDeviceLink/SDLTireStatus.h
diff options
context:
space:
mode:
authorJoel Fischer <joeljfischer@gmail.com>2016-05-25 08:44:23 -0400
committerJoel Fischer <joeljfischer@gmail.com>2016-05-25 08:44:23 -0400
commitfb8e9903a323acaf5fc78819bb3c203567542ab2 (patch)
treee40665103ac7db492e0a40e34cd92f3390defa55 /SmartDeviceLink/SDLTireStatus.h
parentf7540a02262832e34c67b0953dd8a1804a046fea (diff)
downloadsdl_ios-fb8e9903a323acaf5fc78819bb3c203567542ab2.tar.gz
Shift files into root directory
Diffstat (limited to 'SmartDeviceLink/SDLTireStatus.h')
-rw-r--r--SmartDeviceLink/SDLTireStatus.h24
1 files changed, 24 insertions, 0 deletions
diff --git a/SmartDeviceLink/SDLTireStatus.h b/SmartDeviceLink/SDLTireStatus.h
new file mode 100644
index 000000000..9ebd68d8e
--- /dev/null
+++ b/SmartDeviceLink/SDLTireStatus.h
@@ -0,0 +1,24 @@
+// SDLTireStatus.h
+//
+
+#import "SDLRPCMessage.h"
+
+@class SDLSingleTireStatus;
+@class SDLWarningLightStatus;
+
+
+@interface SDLTireStatus : SDLRPCStruct {
+}
+
+- (instancetype)init;
+- (instancetype)initWithDictionary:(NSMutableDictionary *)dict;
+
+@property (strong) SDLWarningLightStatus *pressureTelltale;
+@property (strong) SDLSingleTireStatus *leftFront;
+@property (strong) SDLSingleTireStatus *rightFront;
+@property (strong) SDLSingleTireStatus *leftRear;
+@property (strong) SDLSingleTireStatus *rightRear;
+@property (strong) SDLSingleTireStatus *innerLeftRear;
+@property (strong) SDLSingleTireStatus *innerRightRear;
+
+@end