blob: 4bc6b5098ac183cbbc960c10d48167d6be6c6bcb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
//
// TestConnectionRequestObject.h
// SmartDeviceLinkTests
//
// Created by Joel Fischer on 11/13/20.
// Copyright © 2020 smartdevicelink. All rights reserved.
//
#import <Foundation/Foundation.h>
#import <SmartDeviceLink/SmartDeviceLink.h>
NS_ASSUME_NONNULL_BEGIN
@interface TestConnectionRequestObject : NSObject
@property (strong, nonatomic) __kindof SDLRPCMessage *message;
@property (copy, nonatomic, nullable) SDLResponseHandler responseHandler;
- (instancetype)initWithMessage:(__kindof SDLRPCMessage *)message responseHandler:(nullable SDLResponseHandler)handler;
@end
NS_ASSUME_NONNULL_END
|