| ******************************************************************************* |
| * Copyright (C) 2009-2011, International Business Machines |
| * Corporation and others. All Rights Reserved. |
| ******************************************************************************* |
| * file name: errorcode.cpp |
| * created by: Markus W. Scherer |
| #include "unicode/utypes.h" |
| #include "unicode/errorcode.h" |
| ErrorCode::~ErrorCode() {} |
| UErrorCode ErrorCode::reset() { |
| UErrorCode code = errorCode; |
| errorCode = U_ZERO_ERROR; |
| void ErrorCode::assertSuccess() const { |
| const char* ErrorCode::errorName() const { |
| return u_errorName(errorCode); |