summaryrefslogtreecommitdiff
path: root/SmartDeviceLink/SDLSoftButton.h
diff options
context:
space:
mode:
Diffstat (limited to 'SmartDeviceLink/SDLSoftButton.h')
-rw-r--r--SmartDeviceLink/SDLSoftButton.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/SmartDeviceLink/SDLSoftButton.h b/SmartDeviceLink/SDLSoftButton.h
index aeefc8a9c..89b859b46 100644
--- a/SmartDeviceLink/SDLSoftButton.h
+++ b/SmartDeviceLink/SDLSoftButton.h
@@ -5,10 +5,10 @@
#import "SDLNotificationConstants.h"
#import "SDLRequestHandler.h"
+#import "SDLSoftButtonType.h"
+#import "SDLSystemAction.h"
@class SDLImage;
-@class SDLSoftButtonType;
-@class SDLSystemAction;
@interface SDLSoftButton : SDLRPCStruct <SDLRequestHandler> {
@@ -20,11 +20,11 @@
@property (copy, nonatomic) SDLRPCNotificationHandler handler;
-@property (strong) SDLSoftButtonType *type;
+@property (strong) SDLSoftButtonType type;
@property (strong) NSString *text;
@property (strong) SDLImage *image;
@property (strong) NSNumber *isHighlighted;
@property (strong) NSNumber *softButtonID;
-@property (strong) SDLSystemAction *systemAction;
+@property (strong) SDLSystemAction systemAction;
@end