yaze 0.2.0
Link to the Past ROM Editor
 
Loading...
Searching...
No Matches
file_util.cc
Go to the documentation of this file.
1#include "file_util.h"
2
3#if defined(_WIN32)
4#include <windows.h>
5#else
6#include <dirent.h>
7#include <sys/stat.h>
8#endif
9
10#include <fstream>
11#include <sstream>
12
13namespace yaze {
14namespace app {
15namespace core {
16
17std::string LoadFile(const std::string& filename) {
18 std::string contents;
19 // TODO: Load a file based on the platform and add error handling
20 return contents;
21}
22
23} // namespace core
24} // namespace app
25} // namespace yaze
std::string LoadFile(const std::string &filename)
Definition file_util.cc:17
Definition common.cc:21