Yet Another Game Engine
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
iomanager.h
Go to the documentation of this file.
1 
10 #pragma once
11 
12 #include <string>
13 #include <vector>
14 
15 namespace yage
16 {
17 
18 namespace IoManager
19 {
20 
21 extern bool readFileToBuffer(std::string const &file_path,
22  std::vector<unsigned char> &buffer);
23 }
24 
25 } // namespace yage
bool readFileToBuffer(std::string const &file_path, std::vector< unsigned char > &buffer)
Definition: iomanager.cpp:22