mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-11 07:23:34 +08:00
git-svn-id: svn://fileserver/activex/AVS/Sources/TeamlabOffice/trunk/ServerComponents@58087 954022d7-b5bf-4e40-9824-e11837661b57
16 lines
399 B
C++
16 lines
399 B
C++
#ifndef XML_COMMON
|
|
#define XML_COMMON
|
|
|
|
#include <string>
|
|
#ifdef _WIN32
|
|
#include <atlbase.h>
|
|
#include <atlstr.h>
|
|
#else
|
|
#include "../Base/ASCString.h"
|
|
#endif
|
|
|
|
std::wstring string2std_string(const CString& val);
|
|
std::string string2std_string(const CStringA& val);
|
|
CString std_string2string(const std::wstring& val);
|
|
CStringA std_string2string(const std::string& val);
|
|
#endif //XML_COMMON
|