#include "XmlRpcUtil.h"
#include <ctype.h>
#include <iostream>
#include <stdarg.h>
#include <stdio.h>
#include <string.h>
#include "XmlRpc.h"
Go to the source code of this file.
Classes | |
class | DefaultLogHandler |
class | DefaultErrorHandler |
Variables | |
DefaultLogHandler | defaultLogHandler |
DefaultErrorHandler | defaultErrorHandler |
static const char | AMP = '&' |
static const char | rawEntity [] = { '<', '>', '&', '\'', '\"', 0 } |
static const char * | xmlEntity [] = { "lt;", "gt;", "amp;", "apos;", "quot;", 0 } |
static const int | xmlEntLen [] = { 3, 3, 4, 5, 5 } |
Definition in file XmlRpcUtil.cc.
const char AMP = '&' [static] |
Definition at line 192 of file XmlRpcUtil.cc.
Referenced by XmlRpc::XmlRpcUtil::xmlDecode(), and XmlRpc::XmlRpcUtil::xmlEncode().
DefaultErrorHandler defaultErrorHandler [static] |
DefaultLogHandler defaultLogHandler [static] |
const char rawEntity[] = { '<', '>', '&', '\'', '\"', 0 } [static] |
Definition at line 193 of file XmlRpcUtil.cc.
Referenced by XmlRpc::XmlRpcUtil::xmlDecode(), and XmlRpc::XmlRpcUtil::xmlEncode().
const char* xmlEntity[] = { "lt;", "gt;", "amp;", "apos;", "quot;", 0 } [static] |
Definition at line 194 of file XmlRpcUtil.cc.
Referenced by XmlRpc::XmlRpcUtil::xmlDecode(), and XmlRpc::XmlRpcUtil::xmlEncode().
const int xmlEntLen[] = { 3, 3, 4, 5, 5 } [static] |
Definition at line 195 of file XmlRpcUtil.cc.
Referenced by XmlRpc::XmlRpcUtil::xmlDecode().