cpp-ElementTree
Python ElementTree-alike XML API for C++
fileutil.hpp
1 
2 #ifndef FILEUTIL_HPP
3 #define FILEUTIL_HPP
4 
5 #include <string>
6 #include <vector>
7 
8 
9 std::string get_file_contents(const std::string &filename);
10 void get_path_list(std::vector<std::string> &out, const char *dirname);
11 void decompress(const std::string &path, std::string &out);
12 
13 
14 #endif