#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