diff options
author | Marius Kintel <marius@kintel.net> | 2013-04-10 18:28:51 (GMT) |
---|---|---|
committer | Marius Kintel <marius@kintel.net> | 2013-04-10 18:28:51 (GMT) |
commit | 49a288cd34f604ed13e1eff7b48bcfc6d6286169 (patch) | |
tree | 0ca95d4bfba42e4dc89f1b6f770a34bc6977a4af /src/boost-utils.h | |
parent | fd9dd04f5064a9a21f593670fdcc073fdc14dbfc (diff) | |
parent | d545a227260ddd72b1fdb5c3dc2ebb1bae36c410 (diff) |
Merge branch 'noqt' into testing
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 |