Differences From Artifact [8773fa600a]:
- File
src/OFASN1UTF8String.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: 2217) [annotate] [blame] [check-ins using]
To Artifact [49619d1ec5]:
- File
src/OFASN1UTF8String.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: 2243) [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 UTF8String.
*/
OF_SUBCLASSING_RESTRICTED
@interface OFASN1UTF8String: OFObject
{
OFString *_UTF8StringValue;
}
/*!
* @brief The UTF8String value.
|
| ︙ |