blob: 0cb5c9a45fef3cf0cec9c4a6c95f38c6b85da3ef (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
/*
* $Id: type.c,v 1.2 2004/12/08 17:13:26 lordjaxom Exp $
*/
#include "xml/type.h"
#include "xml/function.h"
#include <stdio.h>
const std::string &cxType::String(void) {
if (mType == number) {
char *buffer;
asprintf(&buffer, "%d", mNumber);
mString = buffer;
mType = string;
free(buffer);
} else if (mType == boolean) {
mString = mNumber ? cxFunction::True : cxFunction::False;
mType = string;
}
return mString;
}
|