17 #import "OFSerialization.h"
19 OF_ASSUME_NONNULL_BEGIN
39 @property (nonatomic, copy)
OFString *stringValue;
44 @property (readonly, nonatomic)
long long longLongValue;
49 @property (readonly, nonatomic)
unsigned long long unsignedLongLongValue;
54 @property (readonly, nonatomic)
float floatValue;
59 @property (readonly, nonatomic)
double doubleValue;
64 @property (readonly, nonatomic)
OFString *XMLString;
66 - (instancetype)init OF_UNAVAILABLE;
67 - (instancetype)initWithSerialization: (
OFXMLElement *)element OF_UNAVAILABLE;
77 - (
OFString *)XMLStringWithIndentation: (
unsigned int)indentation;
88 - (
OFString *)XMLStringWithIndentation: (
unsigned int)indentation
89 level: (
unsigned int)level;
102 - (
long long)longLongValueWithBase: (
int)base;
115 - (
unsigned long long)unsignedLongLongValueWithBase: (
int)base;
118 OF_ASSUME_NONNULL_END
The root class for all other classes inside ObjFW.
Definition: OFObject.h:520
A class for handling strings.
Definition: OFString.h:132
A class which stores an XML element.
Definition: OFXMLElement.h:34
A class which stores an XML element.
Definition: OFXMLNode.h:30
A protocol for the creation of copies.
Definition: OFObject.h:1187
A protocol for serializing objects.
Definition: OFSerialization.h:29