summaryrefslogtreecommitdiff
path: root/SmartDeviceLink/SDLRPCNotification.m
blob: fa6ca7eec71f38ab00ecb6fb734603226ac1ef87 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
//  SDLRPCNotification.m
//


#import "SDLRPCNotification.h"

#import "NSMutableDictionary+Store.h"
#import "SDLRPCParameterNames.h"

NS_ASSUME_NONNULL_BEGIN

@interface SDLRPCMessage ()

@property (strong, nonatomic, readwrite) NSString *messageType;
@property (strong, nonatomic) NSMutableDictionary<NSString *, id> *function;

@end

@implementation SDLRPCNotification

#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Wdeprecated-implementations"
- (instancetype)initWithName:(NSString *)name {
    self = [super initWithName:name];
    if (!self) {
        return nil;
    }

    self.messageType = SDLRPCParameterNameNotification;
    [self.store setObject:self.function forKey:self.messageType];

    return self;
}

- (instancetype)initWithDictionary:(NSDictionary *)dict {
    self = [super initWithDictionary:dict];
    if (!self) {
        return nil;
    }

    self.messageType = SDLRPCParameterNameNotification;
    [self.store setObject:self.function forKey:self.messageType];

    return self;
}
#pragma clang diagnostic pop

@end

NS_ASSUME_NONNULL_END