#include <map>#include <string>#include <vector>#include <time.h>Go to the source code of this file.
Classes | |
| class | XmlRpc::XmlRpcValue |
| A class to represent RPC arguments and results. More... | |
Namespaces | |
| namespace | XmlRpc |
Functions | |
| std::ostream & | operator<< (std::ostream &os, XmlRpc::XmlRpcValue &v) |
Definition in file XmlRpcValue.h.
| std::ostream& operator<< | ( | std::ostream & | os, | |
| XmlRpc::XmlRpcValue & | v | |||
| ) |
Definition at line 610 of file XmlRpcValue.cc.
{
// If you want to output in xml format:
//return os << v.toXml();
return v.write(os);
}
1.7.1