mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-11 02:44:13 +08:00
git-svn-id: svn://fileserver/activex/AVS/Sources/TeamlabOffice/trunk/ServerComponents@54463 954022d7-b5bf-4e40-9824-e11837661b57
12 lines
274 B
C++
12 lines
274 B
C++
#include <string>
|
|
|
|
namespace cpdoccore {
|
|
|
|
// ïðåîáðàçîâàíèå ñòðîê
|
|
|
|
std::string ansi_to_utf8(const std::string & _AnsiString);
|
|
std::wstring utf8_to_utf16(const std::string & _Utf8String);
|
|
std::string utf16_to_utf8(const std::wstring & _Utf16String);
|
|
|
|
}
|