#ifndef IO_MANAGER_HPP #define IO_MANAGER_HPP #include #include class IoManager { public: static bool readFileToBuffer(const std::string &file_path, std::vector &buffer); }; #endif