aboutsummaryrefslogtreecommitdiffstats
path: root/include/YAGE/iomanager.hpp
blob: ef80b5159402a667e7699005f3e5fa4a4ee49b39 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#ifndef IO_MANAGER_HPP
#define IO_MANAGER_HPP

#include <string>
#include <vector>

namespace yage
{

class IoManager
{
public:
    static bool readFileToBuffer(const std::string &file_path, std::vector<unsigned char> &buffer);
};
    
} // yage

#endif