Public Member Functions | |
| void | error (const char *msg) |
| Report an error. Custom error handlers should define this method. | |
Definition at line 53 of file XmlRpcUtil.cc.
| void DefaultErrorHandler::error | ( | const char * | msg | ) | [inline, virtual] |
Report an error. Custom error handlers should define this method.
Implements XmlRpc::XmlRpcErrorHandler.
Definition at line 56 of file XmlRpcUtil.cc.
{
#ifdef USE_WINDOWS_DEBUG
OutputDebugString(msg); OutputDebugString("\n");
#else
std::cerr << msg << std::endl;
#endif
}
1.7.1