diff options
Diffstat (limited to 'core/fxcrt/fx_basic.h')
-rw-r--r-- | core/fxcrt/fx_basic.h | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/core/fxcrt/fx_basic.h b/core/fxcrt/fx_basic.h index dcbb846196..6f676696a2 100644 --- a/core/fxcrt/fx_basic.h +++ b/core/fxcrt/fx_basic.h @@ -87,22 +87,6 @@ class CFX_WideTextBuf : public CFX_BinaryBuf { CFX_WideTextBuf& operator<<(const CFX_WideTextBuf& buf); }; -class CFX_UTF8Decoder { - public: - CFX_UTF8Decoder() { m_PendingBytes = 0; } - - void Clear(); - void Input(uint8_t byte); - void AppendCodePoint(uint32_t ch); - void ClearStatus() { m_PendingBytes = 0; } - CFX_WideStringC GetResult() const { return m_Buffer.AsStringC(); } - - private: - int m_PendingBytes; - uint32_t m_PendingChar; - CFX_WideTextBuf m_Buffer; -}; - template <class DataType, int FixedSize> class CFX_FixedBufGrow { public: |