2 // Copyright (c) 2012 Samsung Electronics Co., Ltd.
4 // Licensed under the Apache License, Version 2.0 (the License);
5 // you may not use this file except in compliance with the License.
6 // You may obtain a copy of the License at
8 // http://www.apache.org/licenses/LICENSE-2.0
10 // Unless required by applicable law or agreed to in writing, software
11 // distributed under the License is distributed on an "AS IS" BASIS,
12 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 // See the License for the specific language governing permissions and
14 // limitations under the License.
18 * @file FText_Iso885916EncodingCore.h
19 * @brief This is the header file for the _Iso885916EncodingCore class.
22 #ifndef _FTEXT_INTERNAL_ISO885916_ENCODING_CORE_H_
23 #define _FTEXT_INTERNAL_ISO885916_ENCODING_CORE_H_
26 #include "FText_EncodingCore.h"
29 namespace Tizen { namespace Text
32 class _Iso885916EncodingCore
33 : public _EncodingCore
36 _Iso885916EncodingCore(void);
37 ~_Iso885916EncodingCore(void);
39 static _EncodingCore* GetEncodingCoreImplN(const Tizen::Base::String& encodingFrom, const Tizen::Base::String& encodingTo);
41 virtual result GetByteCount(const wchar_t* pSrc, int srcLength, int& retLength);
42 virtual result GetCharCount(const byte* pSrc, int srcLength, int& retLength);
44 virtual byte* EncodeN(const wchar_t* pSrc, int srcLength, int& retLength);
45 virtual wchar_t* DecodeN(const byte* pSrc, int srcLength, int& retLength);
47 virtual int GetMaxByteCount(int charCount) const;
48 virtual int GetMaxCharCount(int byteCount) const;
50 virtual Tizen::Base::String GetName(void);
52 }; // _Iso885916EncodingCore
58 #endif //_FTEXT_INTERNAL_ISO885916_ENCODING_CORE_H_