cellar/include/fs.hpp
2017-03-27 21:03:35 -07:00

19 lines
311 B
C++

#ifndef __FS_HPP
#define __FS_HPP
#pragma once
#include <string>
#include <vector>
using namespace std;
namespace cellar {
namespace fs {
extern vector<string> listdir(string path);
extern bool recursive_copy(string, string);
extern bool recursive_remove(string);
}
}
#endif // __FS_HPP