summaryrefslogtreecommitdiff
path: root/SmartDeviceLink/SDLGetSystemCapability.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/SDLGetSystemCapability.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/SDLGetSystemCapability.h')
-rw-r--r--SmartDeviceLink/SDLGetSystemCapability.h29
1 files changed, 29 insertions, 0 deletions
diff --git a/SmartDeviceLink/SDLGetSystemCapability.h b/SmartDeviceLink/SDLGetSystemCapability.h
new file mode 100644
index 000000000..7d7490eeb
--- /dev/null
+++ b/SmartDeviceLink/SDLGetSystemCapability.h
@@ -0,0 +1,29 @@
+//
+// SDLGetSystemCapability.h
+// SmartDeviceLink-iOS
+//
+// Created by Joel Fischer on 7/11/17.
+// Copyright © 2017 smartdevicelink. All rights reserved.
+//
+
+#import <Foundation/Foundation.h>
+
+#import "SDLRPCRequest.h"
+#import "SDLSystemCapabilityType.h"
+
+NS_ASSUME_NONNULL_BEGIN
+
+@interface SDLGetSystemCapability : SDLRPCRequest
+
+- (instancetype)initWithType:(SDLSystemCapabilityType)type;
+
+/**
+ They type of capability you'd like to receive in the response.
+
+ Mandatory
+ */
+@property (strong, nonatomic) SDLSystemCapabilityType systemCapabilityType;
+
+@end
+
+NS_ASSUME_NONNULL_END