About
Contact
QtCreator
KDevelop
Solarized
1
#pragma once
2
3
#include
<string>
4
5
namespace
mbgl
{
6
namespace
util
{
7
8
std::
string
compress
(
const
std::
string
&
raw
);
9
std::
string
decompress
(
const
std::
string
&
raw
);
10
11
}
// namespace util
12
}
// namespace mbgl
13