summaryrefslogtreecommitdiff
path: root/include/llmr/util/io.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'include/llmr/util/io.hpp')
-rw-r--r--include/llmr/util/io.hpp14
1 files changed, 14 insertions, 0 deletions
diff --git a/include/llmr/util/io.hpp b/include/llmr/util/io.hpp
new file mode 100644
index 0000000000..f1e560ffe4
--- /dev/null
+++ b/include/llmr/util/io.hpp
@@ -0,0 +1,14 @@
+#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);
+
+}
+}
+
+#endif