diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2017-04-18 10:40:18 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2017-04-18 10:40:18 +0200 |
commit | ed93e07b1b7a9e0ba99609a9223e43247ff4224e (patch) | |
tree | aa203bdab5a5fc4f5fd8af16baf6903a7ee3dde0 /butl/process-io | |
parent | 4408607c51a7c6e293adae41403b21d4a2c9a429 (diff) |
Implement curl process
Diffstat (limited to 'butl/process-io')
-rw-r--r-- | butl/process-io | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/butl/process-io b/butl/process-io new file mode 100644 index 0000000..42a720a --- /dev/null +++ b/butl/process-io @@ -0,0 +1,21 @@ +// file : butl/process-io -*- C++ -*- +// copyright : Copyright (c) 2014-2017 Code Synthesis Ltd +// license : MIT; see accompanying LICENSE file + +#ifndef BUTL_PROCESS_IO +#define BUTL_PROCESS_IO + +#include <ostream> + +#include <butl/process> + +namespace butl +{ + inline std::ostream& + operator<< (std::ostream& o, const process_path& p) + { + return o << p.recall_string (); + } +} + +#endif // BUTL_PROCESS_IO |