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
46 lines
1.3 KiB
C++
46 lines
1.3 KiB
C++
#ifndef _CPDOCCORE_XML_UTILS_H_
|
|
#define _CPDOCCORE_XML_UTILS_H_
|
|
|
|
#include <string>
|
|
|
|
namespace cpdoccore {
|
|
namespace xml {
|
|
|
|
namespace utils {
|
|
|
|
namespace details {
|
|
|
|
std::wstring replace_text_to_xml_ImplRegEx(const std::wstring & Text);
|
|
std::string replace_text_to_xml_ImplRegEx(const std::string & Text);
|
|
|
|
std::wstring replace_xml_to_text_ImplRegEx(const std::wstring & Text);
|
|
std::string replace_xml_to_text_ImplRegEx(const std::string & Text);
|
|
|
|
std::wstring replace_text_to_xml_ImplReplace(const std::wstring & Text);
|
|
std::string replace_text_to_xml_ImplReplace(const std::string & Text);
|
|
|
|
std::wstring replace_amp_text_to_xml_ImplReplace(const std::wstring & Text);
|
|
std::string replace_amp_text_to_xml_ImplReplace(const std::string & Text);
|
|
|
|
std::wstring replace_xml_to_text_ImplReplace(const std::wstring & Text);
|
|
std::string replace_xml_to_text_ImplReplace(const std::string & Text);
|
|
|
|
}
|
|
|
|
std::wstring replace_text_to_xml(const std::wstring & Text);
|
|
std::string replace_text_to_xml(const std::string & Text);
|
|
|
|
std::wstring replace_amp_text_to_xml(const std::wstring & Text);
|
|
|
|
std::wstring replace_lt_gt(const std::wstring & Text);
|
|
|
|
std::wstring replace_xml_to_text(const std::wstring & Text);
|
|
std::string replace_xml_to_text(const std::string & Text);
|
|
|
|
}
|
|
|
|
}
|
|
}
|
|
|
|
#endif
|