diff options
author | Marius Kintel <marius@kintel.net> | 2013-04-24 06:00:04 (GMT) |
---|---|---|
committer | Marius Kintel <marius@kintel.net> | 2013-04-24 06:00:04 (GMT) |
commit | 5f10c9f9c0a9805567ea8f9b560c6e0b50126119 (patch) | |
tree | 8869b03872b42ce1ffb1755958d05925f9f0bcb4 /src/boost-utils.h | |
parent | 3307deee9361883a5297fbcac7f5a1cb428ed40c (diff) | |
parent | f0ee85e17d474ab9119f82ee6f802d4634743b12 (diff) |
Merge branch 'master' into issue217
Diffstat (limited to 'src/boost-utils.h')
-rw-r--r-- | src/boost-utils.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/boost-utils.h b/src/boost-utils.h new file mode 100644 index 0000000..3678ecc --- /dev/null +++ b/src/boost-utils.h @@ -0,0 +1,13 @@ +#ifndef BOOST_UTILS_H_ +#define BOOST_UTILS_H_ + +#include <boost/filesystem.hpp> +namespace fs = boost::filesystem; + +// FIXME: boostfs_relative_path() has been replaced by +// boostfs_uncomplete(), but kept around for now. +fs::path boostfs_relative_path(const fs::path &path, const fs::path &relative_to); +fs::path boostfs_normalize(const fs::path &path); +fs::path boostfs_uncomplete(fs::path const p, fs::path const base); + +#endif |