diff options
author | Jesse Bounds <jesse@rebounds.net> | 2016-07-07 15:40:07 -0700 |
---|---|---|
committer | Jesse Bounds <jesse@rebounds.net> | 2016-07-07 15:40:07 -0700 |
commit | 23caa9f7aa9a128896afc0743482e015d2c60373 (patch) | |
tree | 0d927ad1f66351c52ad53fe295fe4bed855963a3 /include | |
parent | 2e10c0a8660af9cdf6ff897aaa39e15fe62c6582 (diff) | |
parent | bb057409c728968cf37c9faca2c1eb4c589c5716 (diff) | |
download | qtlocation-mapboxgl-23caa9f7aa9a128896afc0743482e015d2c60373.tar.gz |
Merge branch 'release-ios-v3.3.0' into master
Diffstat (limited to 'include')
-rw-r--r-- | include/mbgl/util/compression.hpp | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/include/mbgl/util/compression.hpp b/include/mbgl/util/compression.hpp new file mode 100644 index 0000000000..5e232187c3 --- /dev/null +++ b/include/mbgl/util/compression.hpp @@ -0,0 +1,12 @@ +#pragma once + +#include <string> + +namespace mbgl { +namespace util { + +std::string compress(const std::string& raw); +std::string decompress(const std::string& raw); + +} // namespace util +} // namespace mbgl |