#ifndef _FILE_MANAGE_H #define _FILE_MANAGE_H #include "headfile.h" class FileManager { public: static std::vector readBinaryFile(const std::string& filename); // 读取二进制文件 }; #endif