summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorJesse Bounds <jesse@rebounds.net>2016-07-08 09:30:22 -0700
committerJesse Bounds <jesse@rebounds.net>2016-07-08 09:30:22 -0700
commit626cf54be23865b044092164510d2d51cb3bc32b (patch)
treef237cbb79fb54ebb180fe777be76c9492f1a4cdf /include
parent01f5b6e58d01207328f58ed8c659378945761bd1 (diff)
parent23caa9f7aa9a128896afc0743482e015d2c60373 (diff)
downloadqtlocation-mapboxgl-626cf54be23865b044092164510d2d51cb3bc32b.tar.gz
Merge branch 'boundsj-merge-3.3.0.rc.1'
Diffstat (limited to 'include')
-rw-r--r--include/mbgl/util/compression.hpp12
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