Remove deprecated code

This commit is contained in:
xia-chu
2024-03-22 20:35:11 +08:00
committed by 夏楚
parent cfac61e55b
commit e972ec5a22
5 changed files with 2 additions and 80 deletions

View File

@@ -18,10 +18,8 @@ namespace mediakit {
class strCoding {
public:
[[deprecated]] static std::string UrlEncode(const std::string &str); //url utf8编码, deprecated
static std::string UrlEncodePath(const std::string &str); //url路径 utf8编码
static std::string UrlEncodeComponent(const std::string &str); // url参数 utf8编码
[[deprecated]] static std::string UrlDecode(const std::string &str); //url utf8解码, deprecated
static std::string UrlDecodePath(const std::string &str); //url路径 utf8解码
static std::string UrlDecodeComponent(const std::string &str); // url参数 utf8解码
#if defined(_WIN32)