diff options
author | don bright <hugh.m.bright@gmail.com> | 2013-03-16 20:56:01 (GMT) |
---|---|---|
committer | don bright <hugh.m.bright@gmail.com> | 2013-03-16 20:56:01 (GMT) |
commit | c855e4d0436a01792b540c7857e1a1997f4810d7 (patch) | |
tree | 4af96b1e682ed36543986d844d0430abedc10365 /src/boost-utils.h | |
parent | 5edc8c57da6eb8bfb7725ac51c4b87edd950e847 (diff) | |
parent | 5628a18f6a0fcf2dd170cac31e386f1ad4f97c0c (diff) |
Merge branch 'noqt' of ssh://ssh.github.com:443/openscad/openscad into noqt_tweaks
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 |