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