
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.
00056 { 00057 #ifdef USE_WINDOWS_DEBUG 00058 OutputDebugString(msg); OutputDebugString("\n"); 00059 #else 00060 std::cerr << msg << std::endl; 00061 #endif 00062 }
1.5.8