// file : build2/path-io -*- C++ -*- // copyright : Copyright (c) 2014-2016 Code Synthesis Ltd // license : MIT; see accompanying LICENSE file #ifndef BUILD2_PATH_IO #define BUILD2_PATH_IO #include #include // Custom path IO. // namespace build2 { using butl::path; using butl::dir_path; std::ostream& operator<< (std::ostream&, const path&); std::ostream& operator<< (std::ostream&, const dir_path&); } #endif // BUILD2_PATH_IO