on_exec_setup.hpp
Go to the documentation of this file.
1
// Copyright (c) 2006, 2007 Julio M. Merino Vidal
2
// Copyright (c) 2008 Ilya Sokolov, Boris Schaeling
3
// Copyright (c) 2009 Boris Schaeling
4
// Copyright (c) 2010 Felipe Tanus, Boris Schaeling
5
// Copyright (c) 2011, 2012 Jeff Flinn, Boris Schaeling
6
//
7
// Distributed under the Boost Software License, Version 1.0. (See accompanying
8
// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
9
10
#pragma once
11
12
#include <
boost/process/config.hpp
>
13
#include <
boost/process/posix/initializers/initializer_base.hpp
>
14
15
namespace
boost::process::posix::initializers
16
{
17
18
template
<
class
Handler>
19
class
on_exec_setup_
:
public
initializer_base
20
{
21
public
:
22
explicit
on_exec_setup_
(Handler handler) : handler_(handler) {}
23
24
template
<
class
PosixExecutor>
25
void
on_exec_setup
(PosixExecutor& e)
const
26
{
27
handler_(e);
28
}
29
30
private
:
31
Handler handler_;
32
};
33
34
template
<
class
Handler>
35
on_exec_setup_<Handler>
on_exec_setup
(Handler handler)
36
{
37
return
on_exec_setup_<Handler>
(handler);
38
}
39
40
}
config.hpp
boost::process::posix::initializers::on_exec_setup
on_exec_setup_< Handler > on_exec_setup(Handler handler)
Definition:
on_exec_setup.hpp:35
initializer_base.hpp
boost::process::posix::initializers::on_exec_setup_
Definition:
on_exec_setup.hpp:19
boost::process::posix::initializers
Definition:
bind_fd.hpp:15
boost::process::posix::initializers::initializer_base
Definition:
initializer_base.hpp:15
boost::process::posix::initializers::on_exec_setup_::on_exec_setup
void on_exec_setup(PosixExecutor &e) const
Definition:
on_exec_setup.hpp:25
boost::process::posix::initializers::on_exec_setup_::on_exec_setup_
on_exec_setup_(Handler handler)
Definition:
on_exec_setup.hpp:22
boost
process
posix
initializers
on_exec_setup.hpp
Generated on Sat Oct 12 2024 09:14:02 for armarx_documentation by
1.8.17