19 #ifndef OPM_FILESYSTEM_HPP
20 #define OPM_FILESYSTEM_HPP
22 #if __cplusplus < 201703L || \
23 (defined(__GNUC__) && __GNUC__ < 8 && !defined(__clang__))
24 #include <experimental/filesystem>
34 #if __cplusplus < 201703L || \
35 (defined(__GNUC__) && __GNUC__ < 8 && !defined(__clang__))
36 namespace filesystem = std::experimental::filesystem;
37 filesystem::path proximate(
const filesystem::path& p,
38 const filesystem::path& base = filesystem::current_path());
40 namespace filesystem = std::filesystem;
41 using filesystem::proximate;
45 std::string unique_path(
const std::string& input);
This class implements a small container which holds the transmissibility mulitpliers for all the face...
Definition: Exceptions.hpp:29