Differences From Artifact [1bbc558259]:
- File
src/OFASN1Enumerated.h
— part of check-in
[c60933a59b]
at
2019-02-09 17:44:00
on branch trunk
— OFASN1*: Add designated initializer
This is in preparation for DER serialization support. (user: js, size: 2119) [annotate] [blame] [check-ins using]
To Artifact [57303b37e8]:
- File
src/OFASN1Enumerated.h
— part of check-in
[496695d778]
at
2019-09-29 19:35:38
on branch trunk
— Either restrict subclassing or reserve ivar space
This allows ABI stability with the fragile ABI. (user: js, size: 2145) [annotate] [blame] [check-ins using]
| ︙ | |||
19 20 21 22 23 24 25 26 27 28 29 30 31 32 | 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 | + |
#import "OFASN1Value.h"
OF_ASSUME_NONNULL_BEGIN
/*!
* @brief An ASN.1 Enumerated.
*/
OF_SUBCLASSING_RESTRICTED
@interface OFASN1Enumerated: OFObject
{
intmax_t _integerValue;
}
/*!
* @brief The integer value.
|
| ︙ |