/* ---------------------------------------------------------------------------- * iomanager.hpp * * Copyright (c) 2017 Yann Herklotz Grave -- MIT License * See file LICENSE for more details * ---------------------------------------------------------------------------- */ #ifndef IO_MANAGER_HPP #define IO_MANAGER_HPP #include #include namespace yage { class IoManager { public: static bool readFileToBuffer(const std::string &file_path, std::vector &buffer); }; } // yage #endif