blob: 888a8b4d20189e78934a79123ad7ad9bb9080c94 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
// file : build/path-io -*- C++ -*-
// copyright : Copyright (c) 2014-2015 Code Synthesis Ltd
// license : MIT; see accompanying LICENSE file
#ifndef BUILD_PATH_IO
#define BUILD_PATH_IO
#include <iosfwd>
#include <butl/path>
// Custom path IO.
//
namespace build
{
using butl::path;
using butl::dir_path;
std::ostream&
operator<< (std::ostream&, const path&);
std::ostream&
operator<< (std::ostream&, const dir_path&);
}
#endif // BUILD_PATH_IO
|