diff options
author | Marius Kintel <marius@kintel.net> | 2013-03-12 05:14:58 (GMT) |
---|---|---|
committer | Marius Kintel <marius@kintel.net> | 2013-03-12 05:14:58 (GMT) |
commit | dccc039211eebe3f69c935557bd56abae323c26f (patch) | |
tree | fb39b939619db2bb258de78cf38012919762fbbc /src/boost-utils.h | |
parent | 6b8a5e266ca1725e35e76aef0caa639fe77fdc48 (diff) |
Got rid of remaining Qt dependencies. The test framework should now be Qt-free
Diffstat (limited to 'src/boost-utils.h')
-rw-r--r-- | src/boost-utils.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/boost-utils.h b/src/boost-utils.h new file mode 100644 index 0000000..c431857 --- /dev/null +++ b/src/boost-utils.h @@ -0,0 +1,8 @@ +#ifndef BOOST_UTILS_H_ +#define BOOST_UTILS_H_ + +#include <boost/filesystem.hpp> +namespace fs = boost::filesystem; +fs::path relativePath(const fs::path &path, const fs::path &relative_to); + +#endif |