115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
|
return [OFNumber numberWithBool: false];
}
static OFNumber *
parseRealElement(OFXMLElement *element)
{
return [OFNumber numberWithDouble: element.stringValue.doubleValue];
}
static OFNumber *
parseIntegerElement(OFXMLElement *element)
{
return [OFNumber numberWithIntMax: element.stringValue.decimalValue];
}
static id
parseElement(OFXMLElement *element)
{
OFString *elementName;
|
|
|
|
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
|
return [OFNumber numberWithBool: false];
}
static OFNumber *
parseRealElement(OFXMLElement *element)
{
return [OFNumber numberWithDouble: element.doubleValue];
}
static OFNumber *
parseIntegerElement(OFXMLElement *element)
{
return [OFNumber numberWithIntMax: element.decimalValue];
}
static id
parseElement(OFXMLElement *element)
{
OFString *elementName;
|