Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-18 09:53:32

0001 //  Boost.Varaint
0002 //  Multivisitors defined here 
0003 //
0004 //  See http://www.boost.org for most recent version, including documentation.
0005 //
0006 //  Copyright (c) 2013-2023 Antony Polukhin.
0007 //
0008 //  Distributed under the Boost
0009 //  Software License, Version 1.0. (See accompanying file
0010 //  LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt).
0011 
0012 #ifndef BOOST_VARIANT_MULTIVISITORS_HPP
0013 #define BOOST_VARIANT_MULTIVISITORS_HPP
0014 
0015 #if defined(_MSC_VER)
0016 # pragma once
0017 #endif
0018 
0019 #include <boost/config.hpp>
0020 #include <boost/variant/variant_fwd.hpp>
0021 
0022 #include <boost/variant/detail/multivisitors_cpp11_based.hpp>
0023 #if !defined(BOOST_NO_CXX14_DECLTYPE_AUTO) && !defined(BOOST_NO_CXX11_DECLTYPE_N3276)
0024 #   include <boost/variant/detail/multivisitors_cpp14_based.hpp>
0025 #endif
0026 
0027 #endif // BOOST_VARIANT_MULTIVISITORS_HPP
0028