summaryrefslogtreecommitdiff
path: root/include/mbgl/util/io.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'include/mbgl/util/io.hpp')
-rw-r--r--include/mbgl/util/io.hpp15
1 files changed, 15 insertions, 0 deletions
diff --git a/include/mbgl/util/io.hpp b/include/mbgl/util/io.hpp
new file mode 100644
index 0000000000..e95fc16d9d
--- /dev/null
+++ b/include/mbgl/util/io.hpp
@@ -0,0 +1,15 @@
+#ifndef MBGL_UTIL_IO
+#define MBGL_UTIL_IO
+
+#include <string>
+
+namespace mbgl {
+namespace util {
+
+void write_file(const std::string &filename, const std::string &data);
+std::string read_file(const std::string &filename);
+
+}
+}
+
+#endif