20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
extern "C" {
#endif
extern int _OFString_Serialization_reference;
#ifdef __cplusplus
}
#endif
/*!
* @brief A category that provides methods for deserializing objects.
*/
@interface OFString (OFSerialization)
/*!
* @brief Deserializes the receiver into an object.
*
* @return The deserialized object
*/
- (id)objectByDeserializing;
@end
|
<
<
<
|
|
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
extern "C" {
#endif
extern int _OFString_Serialization_reference;
#ifdef __cplusplus
}
#endif
@interface OFString (Serialization)
/*!
* @brief Deserializes the receiver into an object.
*
* @return The deserialized object
*/
- (id)objectByDeserializing;
@end
|