aboutsummaryrefslogtreecommitdiffstats
path: root/include/yage/io_manager.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'include/yage/io_manager.hpp')
-rw-r--r--include/yage/io_manager.hpp14
1 files changed, 14 insertions, 0 deletions
diff --git a/include/yage/io_manager.hpp b/include/yage/io_manager.hpp
new file mode 100644
index 00000000..05d288b5
--- /dev/null
+++ b/include/yage/io_manager.hpp
@@ -0,0 +1,14 @@
+#ifndef IO_MANAGER_HPP
+#define IO_MANAGER_HPP
+
+#include <string>
+#include <vector>
+
+class IoManager
+{
+public:
+ static bool readFileToBuffer(const std::string &file_path, std::vector<unsigned char> &buffer);
+};
+
+
+#endif