File indexing completed on 2025-01-18 09:50:09
0001
0002
0003
0004
0005 #ifndef BOOST_PROCESS_V2_DETAIL_IMPL_ENVIRONMENT_IPP
0006 #define BOOST_PROCESS_V2_DETAIL_IMPL_ENVIRONMENT_IPP
0007
0008 #include <boost/process/v2/detail/config.hpp>
0009
0010 #if defined(BOOST_PROCESS_V2_WINDOWS)
0011 #include <boost/process/v2/detail/impl/environment_win.ipp>
0012 #elif defined(BOOST_PROCESS_V2_POSIX)
0013 #include <boost/process/v2/detail/impl/environment_posix.ipp>
0014 #else
0015 #error Operating System not supported.
0016 #endif
0017
0018 #endif