MPL11
 All Classes Namespaces Files Typedefs Macros Groups Pages
inherit.hpp
Go to the documentation of this file.
1 
12 #ifndef BOOST_MPL11_DETAIL_INHERIT_HPP
13 #define BOOST_MPL11_DETAIL_INHERIT_HPP
14 
15 namespace boost { namespace mpl11 { namespace detail {
21  template <typename ...xs>
22  struct inherit : xs... { };
23 }}} // end namespace boost::mpl11::detail
24 
25 #endif // !BOOST_MPL11_DETAIL_INHERIT_HPP
Type multiply inheriting from each of the xs....
Definition: inherit.hpp:22