Searched defs:XmlRpcValue (Results 1 – 5 of 5) sorted by relevance
46 XmlRpcValue() : _type(TypeInvalid) { _value.asBinary = 0; } in XmlRpcValue() function47 XmlRpcValue(bool value) : _type(TypeBoolean) { _value.asBool = value; } in XmlRpcValue() function48 XmlRpcValue(int value) : _type(TypeInt) { _value.asInt = value; } in XmlRpcValue() function49 XmlRpcValue(double value) : _type(TypeDouble) { _value.asDouble = value; } in XmlRpcValue() function51 XmlRpcValue(std::string const& value) : _type(TypeString) in XmlRpcValue() function54 XmlRpcValue(const char* value) : _type(TypeString) in XmlRpcValue() function57 XmlRpcValue(struct tm* value) : _type(TypeDateTime) in XmlRpcValue() function61 XmlRpcValue(void* value, int nBytes) : _type(TypeBase64) in XmlRpcValue() function67 XmlRpcValue(std::string const& xml, int* offset) : _type(TypeInvalid) in XmlRpcValue() function71 XmlRpcValue(XmlRpcValue const& rhs) : _type(TypeInvalid) { *this = rhs; } in XmlRpcValue() function
18 class XmlRpcValue; variable
29 class XmlRpcValue; variable
22 class XmlRpcValue; variable
212 void execute(XmlRpcValue& /* params */, XmlRpcValue& result) in execute() argument