summaryrefslogtreecommitdiff
path: root/src/mbgl/util/url.hpp
blob: 8baa94be1dd2b064d6d7466dbd3f931b46f002c4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#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