summaryrefslogtreecommitdiff
path: root/SmartDeviceLink-iOS/SmartDeviceLink/SDLRequestHandler.h
blob: f31b2e22c24a345a9a4ccb7ebdf5eec6288d29da (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
//
//  SDLRequestHandler.h
//  SmartDeviceLink-iOS
//
//  Created by Joel Fischer on 10/6/15.
//  Copyright © 2015 smartdevicelink. All rights reserved.
//

#import <Foundation/Foundation.h>

#import "SDLNotificationConstants.h"

NS_ASSUME_NONNULL_BEGIN

@protocol SDLRequestHandler <NSObject>

@property (copy, nonatomic, readonly) SDLRPCNotificationHandler handler;

- (instancetype)initWithHandler:(SDLRPCNotificationHandler)handler;

@end

NS_ASSUME_NONNULL_END