summaryrefslogtreecommitdiff
path: root/SmartDeviceLink-iOS/SmartDeviceLink/SDLBeltStatus.m
diff options
context:
space:
mode:
Diffstat (limited to 'SmartDeviceLink-iOS/SmartDeviceLink/SDLBeltStatus.m')
-rw-r--r--SmartDeviceLink-iOS/SmartDeviceLink/SDLBeltStatus.m7
1 files changed, 4 insertions, 3 deletions
diff --git a/SmartDeviceLink-iOS/SmartDeviceLink/SDLBeltStatus.m b/SmartDeviceLink-iOS/SmartDeviceLink/SDLBeltStatus.m
index eec3919fa..eac8cadb2 100644
--- a/SmartDeviceLink-iOS/SmartDeviceLink/SDLBeltStatus.m
+++ b/SmartDeviceLink-iOS/SmartDeviceLink/SDLBeltStatus.m
@@ -1,19 +1,20 @@
// SDLBeltStatus.m
//
-
#import "SDLBeltStatus.h"
#import "SDLNames.h"
+#import "SDLVehicleDataEventStatus.h"
+
@implementation SDLBeltStatus
--(id) init {
+-(instancetype) init {
if (self = [super init]) {}
return self;
}
--(id) initWithDictionary:(NSMutableDictionary*) dict {
+-(instancetype) initWithDictionary:(NSMutableDictionary*) dict {
if (self = [super initWithDictionary:dict]) {}
return self;
}