aboutsummaryrefslogtreecommitdiffstats
path: root/include/YAGE/iomanager.hpp
blob: a0bc22ba762f860ac8e71aeea0011220cec5724b (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