blob: a7e5291ec516ce1373ae8b062a1b8ee877a1df52 (
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&);
}
}
#endif
|