summaryrefslogtreecommitdiff
path: root/SmartDeviceLink/SDLAudioPassThruCapabilities.h
diff options
context:
space:
mode:
authorMuller, Alexander (A.) <amulle19@ford.com>2016-09-21 12:13:36 -0700
committerMuller, Alexander (A.) <amulle19@ford.com>2016-09-21 12:13:36 -0700
commitbe7622fe60babba90276101db79a515597a9fea1 (patch)
tree8bbcc0a3433ae8e42fa2204c9a36712cce0203ca /SmartDeviceLink/SDLAudioPassThruCapabilities.h
parente6e84cc8c23609ab286c64a2c6a3037313f29908 (diff)
downloadsdl_ios-be7622fe60babba90276101db79a515597a9fea1.tar.gz
Initial conversion of all enum objects to SDLEnum typedef.
Diffstat (limited to 'SmartDeviceLink/SDLAudioPassThruCapabilities.h')
-rw-r--r--SmartDeviceLink/SDLAudioPassThruCapabilities.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/SmartDeviceLink/SDLAudioPassThruCapabilities.h b/SmartDeviceLink/SDLAudioPassThruCapabilities.h
index 96772b62b..af15629ca 100644
--- a/SmartDeviceLink/SDLAudioPassThruCapabilities.h
+++ b/SmartDeviceLink/SDLAudioPassThruCapabilities.h
@@ -3,9 +3,9 @@
#import "SDLRPCMessage.h"
-@class SDLAudioType;
-@class SDLBitsPerSample;
-@class SDLSamplingRate;
+#import "SDLAudioType.h"
+#import "SDLBitsPerSample.h"
+#import "SDLSamplingRate.h"
/**
@@ -59,16 +59,16 @@
* @abstract The sampling rate for AudioPassThru<br>
*
*/
-@property (strong) SDLSamplingRate *samplingRate;
+@property (strong) SDLSamplingRate samplingRate;
/**
* @abstract The sample depth in bit for AudioPassThru<br>
*
*/
-@property (strong) SDLBitsPerSample *bitsPerSample;
+@property (strong) SDLBitsPerSample bitsPerSample;
/**
* @abstract The audiotype for AudioPassThru<br>
*
*/
-@property (strong) SDLAudioType *audioType;
+@property (strong) SDLAudioType audioType;
@end