summaryrefslogtreecommitdiff
path: root/SmartDeviceLink/SDLRPCResponseOperation.h
diff options
context:
space:
mode:
Diffstat (limited to 'SmartDeviceLink/SDLRPCResponseOperation.h')
-rw-r--r--SmartDeviceLink/SDLRPCResponseOperation.h26
1 files changed, 26 insertions, 0 deletions
diff --git a/SmartDeviceLink/SDLRPCResponseOperation.h b/SmartDeviceLink/SDLRPCResponseOperation.h
new file mode 100644
index 000000000..ffb56e1ad
--- /dev/null
+++ b/SmartDeviceLink/SDLRPCResponseOperation.h
@@ -0,0 +1,26 @@
+//
+// SDLRPCResponseOperation.h
+// SmartDeviceLink
+//
+// Created by Nicole on 2/20/19.
+// Copyright © 2019 smartdevicelink. All rights reserved.
+//
+
+#import <UIKit/UIKit.h>
+
+#import "SDLAsynchronousOperation.h"
+#import "SDLLifecycleManager.h"
+
+@protocol SDLConnectionManagerType;
+
+NS_ASSUME_NONNULL_BEGIN
+
+@interface SDLRPCResponseOperation : SDLAsynchronousOperation
+
+@property (copy, nonatomic) __kindof SDLRPCMessage *rpc;
+
+- (instancetype)initWithConnectionManager:(id<SDLConnectionManagerType>)connectionManager rpc:(__kindof SDLRPCMessage *)rpc;
+
+@end
+
+NS_ASSUME_NONNULL_END