123456789101112131415161718192021222324252627282930313233 |
- #pragma once
- #include <kopano/zcdefs.h>
- namespace KC {
- class _kc_export CHtmlEntity _kc_final {
- public:
- _kc_hidden static wchar_t toChar(const wchar_t *);
- _kc_hidden static const wchar_t *toName(wchar_t);
- static bool CharToHtmlEntity(WCHAR c, std::wstring &strHTML);
- static bool validateHtmlEntity(const std::wstring &strEntity);
- static WCHAR HtmlEntityToChar(const std::wstring &strEntity);
- };
- }
|