summaryrefslogtreecommitdiff
path: root/SmartDeviceLink/SDLGetSystemCapabilityResponse.h
diff options
context:
space:
mode:
authorJoel Fischer <joeljfischer@gmail.com>2017-07-12 15:09:46 -0400
committerJoel Fischer <joeljfischer@gmail.com>2017-07-12 15:09:46 -0400
commit1895b2ce4f63c35eedc9ed454408887fb448f613 (patch)
treefabdb43016c5f1bfc3c5e0e7404458039ac3b77c /SmartDeviceLink/SDLGetSystemCapabilityResponse.h
parent044a93c17635f06b3903990ac7407759a62b3835 (diff)
parent0dfbf8f25bef1e0e03696ace61f90455f393df2f (diff)
downloadsdl_ios-1895b2ce4f63c35eedc9ed454408887fb448f613.tar.gz
Merge branch 'feature/611_system_capabilities_query_rpc' into feature/611_system_capabilities_query_rpc_5.0.0
# Conflicts: # SmartDeviceLink-iOS.xcodeproj/project.pbxproj # SmartDeviceLink/SDLFunctionID.m # SmartDeviceLink/SDLHeadLampStatus.h # SmartDeviceLink/SDLNames.h
Diffstat (limited to 'SmartDeviceLink/SDLGetSystemCapabilityResponse.h')
-rw-r--r--SmartDeviceLink/SDLGetSystemCapabilityResponse.h24
1 files changed, 24 insertions, 0 deletions
diff --git a/SmartDeviceLink/SDLGetSystemCapabilityResponse.h b/SmartDeviceLink/SDLGetSystemCapabilityResponse.h
new file mode 100644
index 000000000..944261e3a
--- /dev/null
+++ b/SmartDeviceLink/SDLGetSystemCapabilityResponse.h
@@ -0,0 +1,24 @@
+//
+// SDLGetSystemCapabilityResponse.h
+// SmartDeviceLink-iOS
+//
+// Created by Joel Fischer on 7/11/17.
+// Copyright © 2017 smartdevicelink. All rights reserved.
+//
+
+#import <Foundation/Foundation.h>
+
+#import "SDLRPCResponse.h"
+
+@class SDLSystemCapability;
+
+
+NS_ASSUME_NONNULL_BEGIN
+
+@interface SDLGetSystemCapabilityResponse : SDLRPCResponse
+
+@property (strong, nonatomic) SDLSystemCapability *systemCapability;
+
+@end
+
+NS_ASSUME_NONNULL_END