15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
* file.
*/
#include "config.h"
#import "OFASN1Null.h"
#import "OFData.h"
#import "OFInvalidArgumentException.h"
#import "OFInvalidFormatException.h"
@implementation OFASN1Null
- (instancetype)initWithTagClass: (of_asn1_tag_class_t)tagClass
tagNumber: (of_asn1_tag_number_t)tagNumber
|
>
|
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
* file.
*/
#include "config.h"
#import "OFASN1Null.h"
#import "OFData.h"
#import "OFString.h"
#import "OFInvalidArgumentException.h"
#import "OFInvalidFormatException.h"
@implementation OFASN1Null
- (instancetype)initWithTagClass: (of_asn1_tag_class_t)tagClass
tagNumber: (of_asn1_tag_number_t)tagNumber
|
44
45
46
47
48
49
50
51
|
} @catch (id e) {
[self release];
@throw e;
}
return self;
}
@end
|
>
>
>
>
>
|
45
46
47
48
49
50
51
52
53
54
55
56
57
|
} @catch (id e) {
[self release];
@throw e;
}
return self;
}
- (OFString *)description
{
return @"<OFASN1Null>";
}
@end
|