diff options
author | Marius Kintel <marius@kintel.net> | 2013-04-12 04:13:09 (GMT) |
---|---|---|
committer | Marius Kintel <marius@kintel.net> | 2013-04-12 04:13:09 (GMT) |
commit | 60a351a5ee593aee68716dfa76e9ee4f4b767e9f (patch) | |
tree | 374e7104bec631f64187010ba8c2521ba95a3fb7 /src/boost-utils.h | |
parent | 6de88962556c5343f6b8db7fdfe4233c50ba2953 (diff) | |
parent | f242a7a6934effdb292c0fedafa954bafc615cc3 (diff) |
Merge branch 'noqt'
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 |