21 #import "OFMessagePackRepresentation.h" 23 OF_ASSUME_NONNULL_BEGIN
32 OF_SUBCLASSING_RESTRICTED
43 @property (readonly, nonatomic) int8_t type;
48 @property (readonly, nonatomic)
OFData *data;
58 + (instancetype)extensionWithType: (int8_t)type data: (
OFData *)data;
60 - (instancetype)init OF_UNAVAILABLE;
70 - (instancetype)initWithType: (int8_t)type
71 data: (
OFData *)data OF_DESIGNATED_INITIALIZER;
The root class for all other classes inside ObjFW.
Definition: OFObject.h:690
A class for representing the MessagePack extension type.
Definition: OFMessagePackExtension.h:33
A protocol implemented by classes that support encoding to a MessagePack representation.
Definition: OFMessagePackRepresentation.h:33
A protocol for the creation of copies.
Definition: OFObject.h:1350
A class for storing arbitrary data in an array.
Definition: OFData.h:45