summaryrefslogtreecommitdiff
path: root/src/mbgl/util/url.hpp
blob: 6257a171c0c1cf093a2e4e324a31db99051a9dc5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifndef MBGL_UTIL_URL
#define MBGL_UTIL_URL

#include <string>

namespace mbgl {
namespace util {

std::string percentEncode(const std::string&);
std::string percentDecode(const std::string&);

} // namespace util
} // namespace mbgl

#endif