blob: b44cb7b3e3ef5e0f28008245befbd91f3437a76f (
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
|
// SDLEncodedSyncPData.m
//
#import "SDLEncodedSyncPData.h"
#import "SDLNames.h"
@implementation SDLEncodedSyncPData
- (instancetype)init {
if (self = [super initWithName:NAMES_EncodedSyncPData]) {
}
return self;
}
- (instancetype)initWithDictionary:(NSMutableDictionary *)dict {
if (self = [super initWithDictionary:dict]) {
}
return self;
}
- (void)setData:(NSMutableArray *)data {
if (data != nil) {
[parameters setObject:data forKey:NAMES_data];
} else {
[parameters removeObjectForKey:NAMES_data];
}
}
- (NSMutableArray *)data {
return [parameters objectForKey:NAMES_data];
}
@end
|