File indexing completed on 2025-01-18 09:50:07
0001
0002
0003
0004
0005
0006
0007 #ifndef BOOST_PROCESS_DETAIL_TRAITS_GROUP_HPP_
0008 #define BOOST_PROCESS_DETAIL_TRAITS_GROUP_HPP_
0009
0010 #include <boost/process/detail/config.hpp>
0011 #include <boost/process/detail/traits/decl.hpp>
0012
0013
0014
0015 namespace boost { namespace process {
0016
0017 struct group;
0018
0019 namespace detail {
0020
0021
0022 struct group_tag {};
0023
0024 template<>
0025 struct make_initializer_t<group_tag>;
0026
0027
0028 template<> struct initializer_tag_t<::boost::process::group> { typedef group_tag type;};
0029
0030
0031
0032
0033 }}}
0034
0035
0036
0037 #endif