20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
OF_ASSUME_NONNULL_BEGIN
/*!
* @class OFValue OFValue.h ObjFW/OFValue.h
*
* @brief A class for storing arbitrary values in an object.
*/
@interface OFValue: OFObject
/*!
* @brief The ObjC type encoding of the value.
*/
@property (readonly, nonatomic) const char *objCType;
/*!
* @brief The value as a pointer to void.
|
|
|
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
OF_ASSUME_NONNULL_BEGIN
/*!
* @class OFValue OFValue.h ObjFW/OFValue.h
*
* @brief A class for storing arbitrary values in an object.
*/
@interface OFValue: OFObject <OFCopying>
/*!
* @brief The ObjC type encoding of the value.
*/
@property (readonly, nonatomic) const char *objCType;
/*!
* @brief The value as a pointer to void.
|