summaryrefslogtreecommitdiff
path: root/include/llmr/util/io.hpp
blob: cdad9791340e857a8e17138fc4d76aa46fef8274 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifndef LLMR_UTIL_IO
#define LLMR_UTIL_IO

#include <string>

namespace llmr {
namespace util {

void write_file(const std::string &filename, const std::string &data);
std::string read_file(const std::string &filename);

}
}

#endif