Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-12-16 10:10:13

0001 // Boost.TypeErasure library
0002 //
0003 // Copyright 2011 Steven Watanabe
0004 //
0005 // Distributed under the Boost Software License Version 1.0. (See
0006 // accompanying file LICENSE_1_0.txt or copy at
0007 // http://www.boost.org/LICENSE_1_0.txt)
0008 //
0009 // $Id$
0010 
0011 #ifndef BOOST_TYPE_ERASURE_CONFIG_HPP_INCLUDED
0012 #define BOOST_TYPE_ERASURE_CONFIG_HPP_INCLUDED
0013 
0014 #ifndef BOOST_TYPE_ERASURE_MAX_FUNCTIONS
0015 /** The maximum number of functions that an @ref boost::type_erasure::any "any" can have. */
0016 #define BOOST_TYPE_ERASURE_MAX_FUNCTIONS 50
0017 #endif
0018 #ifndef BOOST_TYPE_ERASURE_MAX_ARITY
0019 /** The maximum number of arguments that functions in the library support. */
0020 #define BOOST_TYPE_ERASURE_MAX_ARITY 5
0021 #endif
0022 #ifndef BOOST_TYPE_ERASURE_MAX_TUPLE_SIZE
0023 /** The maximum number of elements in a @ref boost::type_erasure::tuple "tuple". */
0024 #define BOOST_TYPE_ERASURE_MAX_TUPLE_SIZE 5
0025 #endif
0026 
0027 #endif