sl@0: // -------------------------------------------------- sl@0: // sl@0: // (C) Copyright Chuck Allison and Jeremy Siek 2001 - 2002. sl@0: // (C) Copyright Gennaro Prota 2003 - 2004. sl@0: // sl@0: // Distributed under the Boost Software License, Version 1.0. sl@0: // (See accompanying file LICENSE_1_0.txt or copy at sl@0: // http://www.boost.org/LICENSE_1_0.txt) sl@0: // sl@0: // ----------------------------------------------------------- sl@0: sl@0: // See http://www.boost.org/libs/dynamic_bitset for documentation. sl@0: sl@0: sl@0: #ifndef BOOST_DYNAMIC_BITSET_CONFIG_HPP_GP_20040424 sl@0: #define BOOST_DYNAMIC_BITSET_CONFIG_HPP_GP_20040424 sl@0: sl@0: #include "boost/config.hpp" sl@0: #include "boost/detail/workaround.hpp" sl@0: sl@0: // support for pre 3.0 libstdc++ - thanks Phil Edwards! sl@0: #if defined (__STL_CONFIG_H) && !defined (__STL_USE_NEW_IOSTREAMS) sl@0: # define BOOST_OLD_IOSTREAMS sl@0: #endif sl@0: sl@0: // this should be in the config system some day sl@0: // see http://lists.boost.org/MailArchives/boost/msg62291.php sl@0: #define BOOST_DYNAMIC_BITSET_GNUC_VERSION ( __GNUC__ * 100 * 100 \ sl@0: + __GNUC_MINOR__ * 100) sl@0: sl@0: // workaround for gcc bug c++/8419 - gps sl@0: sl@0: namespace boost { namespace detail { sl@0: template T make_non_const(T t) { return t; } sl@0: }} sl@0: sl@0: #if defined(__GNUC__) && BOOST_WORKAROUND(BOOST_DYNAMIC_BITSET_GNUC_VERSION, \ sl@0: BOOST_TESTED_AT(30300)) sl@0: # define BOOST_DYNAMIC_BITSET_WRAP_CONSTANT(expr) \ sl@0: (boost::detail::make_non_const(expr)) sl@0: #else sl@0: # define BOOST_DYNAMIC_BITSET_WRAP_CONSTANT(expr) (expr) sl@0: #endif sl@0: sl@0: // sl@0: #if (defined __BORLANDC__ && BOOST_WORKAROUND(__BORLANDC__, BOOST_TESTED_AT(0x564))) \ sl@0: || (defined BOOST_NO_MEMBER_TEMPLATE_FRIENDS) sl@0: #define BOOST_DYNAMIC_BITSET_DONT_USE_FRIENDS sl@0: #endif sl@0: sl@0: // if we can't use friends then private members are exposed sl@0: // sl@0: #if defined(BOOST_DYNAMIC_BITSET_DONT_USE_FRIENDS) sl@0: #define BOOST_DYNAMIC_BITSET_PRIVATE public sl@0: #else sl@0: #define BOOST_DYNAMIC_BITSET_PRIVATE private sl@0: #endif sl@0: sl@0: // A couple of macros to cope with libraries without locale sl@0: // support. The first macro must be used to declare a reference sl@0: // to a ctype facet. The second one to widen a char by using sl@0: // that ctype object. If facets and locales aren't available sl@0: // the first macro is a no-op and the second one just expands sl@0: // to its parameter c. sl@0: // sl@0: #if defined (BOOST_USE_FACET) sl@0: sl@0: #define BOOST_DYNAMIC_BITSET_CTYPE_FACET(ch, name, loc) \ sl@0: const std::ctype & name = \ sl@0: BOOST_USE_FACET(std::ctype, loc) /**/ sl@0: sl@0: #define BOOST_DYNAMIC_BITSET_WIDEN_CHAR(fac, c) \ sl@0: (fac.widen(c)) sl@0: #else sl@0: sl@0: #define BOOST_DYNAMIC_BITSET_CTYPE_FACET(ch, name, loc) /**/ sl@0: #define BOOST_DYNAMIC_BITSET_WIDEN_CHAR(fac, c) c sl@0: sl@0: #endif sl@0: sl@0: #endif // include guard