Differences From Artifact [0728c17a9c]:
- File
src/OFASN1NumericString.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: 2257) [annotate] [blame] [check-ins using]
To Artifact [9b3578e8e9]:
- File
src/OFASN1NumericString.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: 2283) [annotate] [blame] [check-ins using]
| ︙ | |||
21 22 23 24 25 26 27 28 29 30 31 32 33 34 | 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 | + |
OF_ASSUME_NONNULL_BEGIN
@class OFString;
/*!
* @brief An ASN.1 NumericString.
*/
OF_SUBCLASSING_RESTRICTED
@interface OFASN1NumericString: OFObject
{
OFString *_numericStringValue;
}
/*!
* @brief The NumericString value.
|
| ︙ |