Inheritance diagram for DefaultErrorHandler:
Public Member Functions | |
void | error (const char *msg) |
Report an error. Custom error handlers should define this method. |
void DefaultErrorHandler::error | ( | const char * | msg | ) | [inline, virtual] |
Report an error. Custom error handlers should define this method.
Implements XmlRpc::XmlRpcErrorHandler.
00051 { 00052 #ifdef USE_WINDOWS_DEBUG 00053 OutputDebugString(msg); OutputDebugString("\n"); 00054 #else 00055 std::cerr << msg << std::endl; 00056 #endif 00057 }