Chris@101: /* Copyright 2003-2013 Joaquin M Lopez Munoz. Chris@16: * Distributed under the Boost Software License, Version 1.0. Chris@16: * (See accompanying file LICENSE_1_0.txt or copy at Chris@16: * http://www.boost.org/LICENSE_1_0.txt) Chris@16: * Chris@16: * See http://www.boost.org/libs/multi_index for library home page. Chris@16: */ Chris@16: Chris@16: #ifndef BOOST_MULTI_INDEX_DETAIL_ACCESS_SPECIFIER_HPP Chris@16: #define BOOST_MULTI_INDEX_DETAIL_ACCESS_SPECIFIER_HPP Chris@16: Chris@101: #if defined(_MSC_VER) Chris@16: #pragma once Chris@16: #endif Chris@16: Chris@16: #include Chris@16: #include Chris@16: Chris@16: /* In those compilers that do not accept the member template friend syntax, Chris@16: * some protected and private sections might need to be specified as Chris@16: * public. Chris@16: */ Chris@16: Chris@16: #if defined(BOOST_NO_MEMBER_TEMPLATE_FRIENDS) Chris@16: #define BOOST_MULTI_INDEX_PROTECTED_IF_MEMBER_TEMPLATE_FRIENDS public Chris@16: #define BOOST_MULTI_INDEX_PRIVATE_IF_MEMBER_TEMPLATE_FRIENDS public Chris@16: #else Chris@16: #define BOOST_MULTI_INDEX_PROTECTED_IF_MEMBER_TEMPLATE_FRIENDS protected Chris@16: #define BOOST_MULTI_INDEX_PRIVATE_IF_MEMBER_TEMPLATE_FRIENDS private Chris@16: #endif Chris@16: Chris@16: /* GCC does not correctly support in-class using declarations for template Chris@16: * functions. See http://gcc.gnu.org/bugzilla/show_bug.cgi?id=9810 Chris@16: * MSVC 7.1/8.0 seem to have a similar problem, though the conditions in Chris@16: * which the error happens are not that simple. I have yet to isolate this Chris@16: * into a snippet suitable for bug reporting. Chris@16: * Sun Studio also has this problem, which might be related, from the Chris@16: * information gathered at Sun forums, with a known issue notified at the Chris@16: * internal bug report 6421933. The bug is present up to Studio Express 2, Chris@16: * the latest preview version of the future Sun Studio 12. As of this writing Chris@16: * (October 2006) it is not known whether a fix will finally make it into the Chris@16: * official Sun Studio 12. Chris@16: */ Chris@16: Chris@101: #if BOOST_WORKAROUND(__GNUC__,==3)&&(__GNUC_MINOR__<4)||\ Chris@16: BOOST_WORKAROUND(BOOST_MSVC,==1310)||\ Chris@16: BOOST_WORKAROUND(BOOST_MSVC,==1400)||\ Chris@16: BOOST_WORKAROUND(__SUNPRO_CC,BOOST_TESTED_AT(0x590)) Chris@16: #define BOOST_MULTI_INDEX_PRIVATE_IF_USING_DECL_FOR_TEMPL_FUNCTIONS public Chris@16: #else Chris@16: #define BOOST_MULTI_INDEX_PRIVATE_IF_USING_DECL_FOR_TEMPL_FUNCTIONS private Chris@16: #endif Chris@16: Chris@16: #endif