aboutsummaryrefslogtreecommitdiffstats
path: root/zedengine/include/io_manager.hpp
blob: 05d288b537737284754fe8b2ab596f429a98ab28 (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