// © 2016 and later: Unicode, Inc. and others. // License & terms of use: http://www.unicode.org/copyright.html /* ******************************************************************************* * Copyright (C) 2015-2016, International Business Machines * Corporation and others. All Rights Reserved. ******************************************************************************* * file name: charstr.cpp */ #include "unicode/utypes.h" #include "unicode/putil.h" #include "unicode/unistr.h" #include "cstr.h" #include "charstr.h" #include "uinvchar.h" U_NAMESPACE_BEGIN CStr::CStr(const UnicodeString &in) { … } CStr::~CStr() { … } const char * CStr::operator ()() const { … } U_NAMESPACE_END