summaryrefslogtreecommitdiff
path: root/include/mbgl/util/io.hpp
blob: e95fc16d9d71e891540bab7ebbc114cca7c37d3d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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