summaryrefslogtreecommitdiff
path: root/SmartDeviceLink/SDLRPCNotification.m
blob: 5c2a063dd08ebbe22bbe278dd17adb2db7cc5b19 (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
//  SDLRPCNotification.m
//


#import "SDLRPCNotification.h"

#import "SDLNames.h"

@implementation SDLRPCNotification

- (instancetype)initWithName:(NSString *)name {
    self = [super initWithName:name];
    if (!self) {
        return nil;
    }

    messageType = NAMES_notification;
    [store setObject:function forKey:messageType];

    return self;
}

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

    messageType = NAMES_notification;
    [store setObject:function forKey:messageType];

    return self;
}

@end