blob: c5e33ec7bd1f5d6d04efa1d16dc32a1ece5172f2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#ifndef FILEIO_HPP_
#define FILEIO_HPP_
#include <string>
#include <list>
#include <vector>
// reads the names of files in a directory into the given string vector
int getdir(std::string dir, std::list<std::string>& files);
// reads the given file into a buffer and returns a pointer to the buffer
std::string readFile(const std::string& path);
std::vector<std::string> readFileA(const std::string& path);
#endif // FILEIO_HPP_
|