Differences From Artifact [2e8623fcd6]:
- File
src/OFASN1ObjectIdentifier.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: 2396) [annotate] [blame] [check-ins using]
To Artifact [6b96b42139]:
- File
src/OFASN1ObjectIdentifier.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: 2422) [annotate] [blame] [check-ins using]
| ︙ | |||
22 23 24 25 26 27 28 29 30 31 32 33 34 35 | 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 | + |
@class OFArray OF_GENERIC(ObjetType);
@class OFNumber;
/*!
* @brief An ASN.1 ObjectIdentifier.
*/
OF_SUBCLASSING_RESTRICTED
@interface OFASN1ObjectIdentifier: OFObject
{
OFArray OF_GENERIC(OFNumber *) *_subidentifiers;
}
/*!
* @brief The subidentifiers of the ObjectIdentifier.
|
| ︙ |