diff options
Diffstat (limited to 'src/mbgl/util/io.hpp')
-rw-r--r-- | src/mbgl/util/io.hpp | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/mbgl/util/io.hpp b/src/mbgl/util/io.hpp new file mode 100644 index 0000000000..e95fc16d9d --- /dev/null +++ b/src/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 |