mirror of
https://github.com/ciphervance/supercell-wx.git
synced 2025-10-30 20:50:06 +00:00
26 lines
395 B
C++
26 lines
395 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
|
|
namespace scwx
|
|
{
|
|
namespace qt
|
|
{
|
|
namespace util
|
|
{
|
|
namespace network
|
|
{
|
|
|
|
/**
|
|
* @brief Converts a local or remote URL to a consistent format.
|
|
*
|
|
* @param [in] urlString URL to normalize
|
|
*
|
|
* @return Normalized URL string
|
|
*/
|
|
std::string NormalizeUrl(const std::string& urlString);
|
|
|
|
} // namespace network
|
|
} // namespace util
|
|
} // namespace qt
|
|
} // namespace scwx
|