blob: 981d7105c85321f49382e3c16e586ad440412bd4 (
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
|
// SDLDeleteCommand.m
//
#import "SDLDeleteCommand.h"
#import "SDLNames.h"
@implementation SDLDeleteCommand
- (instancetype)init {
if (self = [super initWithName:NAMES_DeleteCommand]) {
}
return self;
}
- (instancetype)initWithDictionary:(NSMutableDictionary *)dict {
if (self = [super initWithDictionary:dict]) {
}
return self;
}
- (instancetype)initWithId:(NSInteger)commandId {
self = [self init];
if (!self) {
return nil;
}
self.cmdID = @(commandId);
return self;
}
- (void)setCmdID:(NSNumber *)cmdID {
if (cmdID != nil) {
[parameters setObject:cmdID forKey:NAMES_cmdID];
} else {
[parameters removeObjectForKey:NAMES_cmdID];
}
}
- (NSNumber *)cmdID {
return [parameters objectForKey:NAMES_cmdID];
}
@end
|