#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.
00611 { 00612 // If you want to output in xml format: 00613 //return os << v.toXml(); 00614 return v.write(os); 00615 }
1.5.8