Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mpc-hc/mpc-hc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/thirdparty/ZenLib/ZenLib/Format/Http/Http_Utils.h')
-rw-r--r--src/thirdparty/ZenLib/ZenLib/Format/Http/Http_Utils.h68
1 files changed, 0 insertions, 68 deletions
diff --git a/src/thirdparty/ZenLib/ZenLib/Format/Http/Http_Utils.h b/src/thirdparty/ZenLib/ZenLib/Format/Http/Http_Utils.h
deleted file mode 100644
index be0614eed..000000000
--- a/src/thirdparty/ZenLib/ZenLib/Format/Http/Http_Utils.h
+++ /dev/null
@@ -1,68 +0,0 @@
-/* Copyright (c) MediaArea.net SARL. All Rights Reserved.
- *
- * Use of this source code is governed by a zlib-style license that can
- * be found in the License.txt file in the root of the source tree.
- */
-
-//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
-//
-// HTTP utils
-//
-//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
-
-//---------------------------------------------------------------------------
-#ifndef ZenLib_Server_Http_UtilsH
-#define ZenLib_Server_Http_UtilsH
-//---------------------------------------------------------------------------
-
-//---------------------------------------------------------------------------
-#include <string>
-#include <ctime>
-#include <map>
-#include <vector>
-//---------------------------------------------------------------------------
-
-namespace ZenLib
-{
-
-namespace Format
-{
-
-namespace Http
-{
-
-//***************************************************************************
-//
-//***************************************************************************
-
-//---------------------------------------------------------------------------
-// Character manipulation
-unsigned char Char2Hex (unsigned char Char);
-wchar_t Char2Hex (wchar_t Char);
-std::string Hex2Char (unsigned char Char);
-#ifndef WSTRING_MISSING
-std::wstring Hex2Char (wchar_t Char);
-#endif //WSTRING_MISSING
-
-//---------------------------------------------------------------------------
-// URL manipulation
-std::string URL_Encoded_Encode (const std::string& URL);
-#ifndef WSTRING_MISSING
-std::wstring URL_Encoded_Encode (const std::wstring& URL);
-#endif //WSTRING_MISSING
-std::string URL_Encoded_Decode (const std::string& URL);
-#ifndef WSTRING_MISSING
-std::wstring URL_Encoded_Decode (const std::wstring& URL);
-#endif //WSTRING_MISSING
-
-//---------------------------------------------------------------------------
-// Cleanup
-void TrimLeft (std::string& String, char ToTrim);
-
-} //Namespace
-
-} //Namespace
-
-} //Namespace
-
-#endif //ZENLIB_SERVER_HTTP_UTILS