|
Chaste
Release::3.4
|
Go to the documentation of this file.
36 #ifndef BOOSTFILESYSTEM_HPP_
37 #define BOOSTFILESYSTEM_HPP_
46 #include <boost/version.hpp>
48 #if BOOST_VERSION <= 104900
50 #define BOOST_FILESYSTEM_VERSION 2
52 #define PATH_LEAF_NAME(path) path.leaf()
55 #define PATH_LEAF_NAME(path) path.leaf().string()
58 #include <boost/filesystem.hpp>
59 #include <boost/filesystem/fstream.hpp>
61 namespace fs = boost::filesystem;
63 #endif // BOOSTFILESYSTEM_HPP_