/usr/include/boost/process
NameSizeModeActions
detail/-0755rm
args.hpp89680644editdlrm
async.hpp36830644editdlrm
async_pipe.hpp76940644editdlrm
async_system.hpp45350644editdlrm
child.hpp53090644editdlrm
cmd.hpp30720644editdlrm
env.hpp123010644editdlrm
environment.hpp247580644editdlrm
error.hpp66570644editdlrm
exception.hpp7100644editdlrm
exe.hpp25360644editdlrm
extend.hpp145850644editdlrm
group.hpp67600644editdlrm
handles.hpp30380644editdlrm
io.hpp199900644editdlrm
locale.hpp69680644editdlrm
pipe.hpp187630644editdlrm
posix.hpp28480644editdlrm
search_path.hpp17750644editdlrm
shell.hpp25890644editdlrm
spawn.hpp19290644editdlrm
start_dir.hpp34490644editdlrm
system.hpp40930644editdlrm
windows.hpp36750644editdlrm
Edit: /usr/include/boost/process/exe.hpp (2536B)
// Copyright (c) 2006, 2007 Julio M. Merino Vidal // Copyright (c) 2008 Ilya Sokolov, Boris Schaeling // Copyright (c) 2009 Boris Schaeling // Copyright (c) 2010 Felipe Tanus, Boris Schaeling // Copyright (c) 2011, 2012 Jeff Flinn, Boris Schaeling // Copyright (c) 2016 Klemens D. Morgenstern // // Distributed under the Boost Software License, Version 1.0. (See accompanying // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) #ifndef BOOST_PROCESS_EXE_HPP #define BOOST_PROCESS_EXE_HPP #include /** \file boost/process/exe.hpp * * Header which provides the exe property. \xmlonly namespace boost { namespace process { unspecified exe; } } \endxmlonly */ namespace boost { namespace filesystem { class path; } namespace process { namespace detail { struct exe_ { template inline exe_setter_ operator()(const boost::filesystem::path & pth) const { return exe_setter_(pth.native()); } template inline exe_setter_ operator=(const boost::filesystem::path & pth) const { return exe_setter_(pth.native()); } template inline exe_setter_ operator()(const Char *s) const { return exe_setter_(s); } template inline exe_setter_ operator= (const Char *s) const { return exe_setter_(s); } template inline exe_setter_ operator()(const std::basic_string &s) const { return exe_setter_(s); } template inline exe_setter_ operator= (const std::basic_string &s) const { return exe_setter_(s); } }; } /** The exe property allows to explicitly set the executable. The overload form applies when to the first, when several strings are passed to a launching function. The following expressions are valid, with `value` being either a C-String or a `std::basic_string` with `char` or `wchar_t` or a `boost::filesystem::path`. \code{.cpp} exe="value"; exe(value); \endcode The property can only be used for assignments. */ constexpr boost::process::detail::exe_ exe{}; }} #endif