1 // Copyright (c) 2016 Klemens D. Morgenstern 2 // 3 // Distributed under the Boost Software License, Version 1.0. (See accompanying 4 // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) 5 6 #ifndef BOOST_PROCESS_DETAIL_WINDOWS_HANDLER_HPP_ 7 #define BOOST_PROCESS_DETAIL_WINDOWS_HANDLER_HPP_ 8 9 #include <boost/process/detail/handler_base.hpp> 10 11 namespace boost { namespace process { namespace detail { namespace windows { 12 13 //does not extend anything. 14 struct handler_base_ext : handler_base {}; 15 16 }}}} 17 18 19 20 #endif /* BOOST_PROCESS_DETAIL_WINDOWS_HANDLER_HPP_ */ 21