aboutsummaryrefslogtreecommitdiff
path: root/libbutl/process.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'libbutl/process.hxx')
-rw-r--r--libbutl/process.hxx9
1 files changed, 9 insertions, 0 deletions
diff --git a/libbutl/process.hxx b/libbutl/process.hxx
index 8648690..5a6837f 100644
--- a/libbutl/process.hxx
+++ b/libbutl/process.hxx
@@ -827,6 +827,15 @@ namespace butl
const process_env&,
A&&... args);
+ // Call the callback without actually running/starting anything.
+ //
+ template <typename C,
+ typename... A>
+ void
+ process_print_callback (const C&,
+ const process_env&,
+ A&&... args);
+
// Conversion of types to their C string representations. Can be overloaded
// (including via ADL) for custom types. The default implementation calls
// to_string() which covers all the numeric values via std::to_string () and