/* Copyright 2024 Joaquin M Lopez Munoz. * 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) * * See http://www.boost.org/libs/poly_collection for library home page. */ #ifndef BOOST_POLY_COLLECTION_VARIANT_COLLECTION_FWD_HPP #define BOOST_POLY_COLLECTION_VARIANT_COLLECTION_FWD_HPP #if defined(_MSC_VER) #pragma once #endif #include #include namespace boost{ namespace poly_collection{ namespace detail{ template struct variant_model; } template using variant_collection_value_type= typename mp11::mp_rename::value_type; template< typename TypeList, typename Allocator=std::allocator> > class variant_collection; template using variant_collection_of=variant_collection>; template bool operator==( const variant_collection& x, const variant_collection& y); template bool operator!=( const variant_collection& x, const variant_collection& y); template void swap( variant_collection& x, variant_collection& y); } /* namespace poly_collection */ using poly_collection::variant_collection; using poly_collection::variant_collection_of; } /* namespace boost */ #endif