aboutsummaryrefslogtreecommitdiffstats
path: root/include/io_manager.hpp
blob: d23cd71b07433f0a1662170b0b246e9bda494f8f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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