diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2015-06-18 14:41:45 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2015-06-18 14:41:45 +0200 |
commit | 63e7a4a77cb8ceed7b42561fe3202b0b48d86db6 (patch) | |
tree | bde5a79522225f32ec188ba46d0834486c30f00f /build/path-io | |
parent | 28c82c861e38fe05a25e916563e0551ed8fce91e (diff) |
Move path and filesystem from build2 to libbutl
Diffstat (limited to 'build/path-io')
-rw-r--r-- | build/path-io | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/build/path-io b/build/path-io index c2130da..888a8b4 100644 --- a/build/path-io +++ b/build/path-io @@ -7,10 +7,15 @@ #include <iosfwd> -#include <build/path> +#include <butl/path> +// Custom path IO. +// namespace build { + using butl::path; + using butl::dir_path; + std::ostream& operator<< (std::ostream&, const path&); |