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/types | |
parent | 28c82c861e38fe05a25e916563e0551ed8fce91e (diff) |
Move path and filesystem from build2 to libbutl
Diffstat (limited to 'build/types')
-rw-r--r-- | build/types | 21 |
1 files changed, 20 insertions, 1 deletions
diff --git a/build/types b/build/types index c29890a..5f6b3de 100644 --- a/build/types +++ b/build/types @@ -7,13 +7,32 @@ #include <vector> -#include <build/path> +#include <butl/path> +#include <butl/timestamp> + +#include <build/name> namespace build { // Commonly-used types. // + // <butl/path> + // + using butl::path; + using butl::dir_path; + using butl::basic_path; + using butl::invalid_path; + + // <butl/timestamp> + // + using butl::system_clock; + using butl::timestamp; + using butl::duration; + using butl::timestamp_unknown; + using butl::timestamp_nonexistent; + using butl::operator<<; + typedef std::vector<path> paths; typedef std::vector<dir_path> dir_paths; } |