diff -r 22486c9c7b15 -r 378360dbbdba imgtools/imglib/inc/utf16string.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/imgtools/imglib/inc/utf16string.h Wed Jun 30 11:35:58 2010 +0800 @@ -0,0 +1,52 @@ +/* +* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies). +* All rights reserved. +* This component and the accompanying materials are made available +* under the terms of the License "Eclipse Public License v1.0" +* which accompanies this distribution, and is available +* at the URL "http://www.eclipse.org/legal/epl-v10.html". +* +* Initial Contributors: +* Nokia Corporation - initial contribution. +* +* Contributors: +* +* Description: +* @internalComponent * @released +* +*/ + +#ifndef __UTF16_STRING_H__ +#define __UTF16_STRING_H__ +#include +#include +#include +using namespace std ; + +class UTF16String { +public : + + UTF16String(); + UTF16String(const UTF16String& aRight); + UTF16String(const string& aUtf8Str); + UTF16String(const TUint16* aUtf16Str,TInt aLength = -1); + UTF16String(const char* aUtf8Str,TInt aLength = -1); + ~UTF16String(); + + bool FromFile(const char* aFileName); + bool ToUTF8(string& aResult) const ; + bool Assign(const char* aUtf8Str,TInt aLength = -1); + inline TUint length() const { return iLength ;} + inline TUint bytes() const { return (iLength << 1) ;} + const TUint16* c_str() const ; + inline bool IsEmpty() const { return (0 == iLength) ;} + UTF16String& operator = (const UTF16String& aRight); + int Compare(const TUint16* aUtf16Str) const ; + int CompareNoCase(const TUint16* aUtf16Str) const ; + TUint16* Alloc(size_t aNewLen); + +protected: + TUint16* iData ; + TUint iLength ; +}; +#endif