ObjFW  Diff

Differences From Artifact [2af3ef13d9]:

To Artifact [165d7482b5]:


18
19
20
21
22
23
24


25
26
27
28
29
30
31
#import "OFSerialization.h"
#import "OFMessagePackRepresentation.h"

@class OFString;
@class OFURL;

/*!


 * @brief A class for storing arbitrary data in an array.
 *
 * If you plan to store large hunks of data, you should consider using
 * OFBigDataArray, which allocates the memory in pages rather than in bytes.
 *
 * For security reasons, serialization and deserialization is only implemented
 * for OFDataArrays with item size 1.







>
>







18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#import "OFSerialization.h"
#import "OFMessagePackRepresentation.h"

@class OFString;
@class OFURL;

/*!
 * @class OFDataArray OFDataArray.h ObjFW/OFDataArray.h
 *
 * @brief A class for storing arbitrary data in an array.
 *
 * If you plan to store large hunks of data, you should consider using
 * OFBigDataArray, which allocates the memory in pages rather than in bytes.
 *
 * For security reasons, serialization and deserialization is only implemented
 * for OFDataArrays with item size 1.