1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- #ifndef BOOST_STRING_STD_LIST_TRAITS_HPP
- #define BOOST_STRING_STD_LIST_TRAITS_HPP
- #include <boost/algorithm/string/yes_no_type.hpp>
- #include <list>
- #include <boost/algorithm/string/sequence_traits.hpp>
- namespace boost {
- namespace algorithm {
-
- template<typename T, typename AllocT>
- class has_stable_iterators< ::std::list<T,AllocT> >
- {
- public:
- #if BOOST_WORKAROUND( __IBMCPP__, <= 600 )
- enum { value = true };
- #else
- BOOST_STATIC_CONSTANT(bool, value=true);
- #endif
- typedef mpl::bool_<has_stable_iterators<T>::value> type;
- };
-
- template<typename T, typename AllocT>
- class has_const_time_insert< ::std::list<T,AllocT> >
- {
- public:
- #if BOOST_WORKAROUND( __IBMCPP__, <= 600 )
- enum { value = true };
- #else
- BOOST_STATIC_CONSTANT(bool, value=true);
- #endif
- typedef mpl::bool_<has_const_time_insert<T>::value> type;
- };
-
- template<typename T, typename AllocT>
- class has_const_time_erase< ::std::list<T,AllocT> >
- {
- public:
- #if BOOST_WORKAROUND( __IBMCPP__, <= 600 )
- enum { value = true };
- #else
- BOOST_STATIC_CONSTANT(bool, value=true);
- #endif
- typedef mpl::bool_<has_const_time_erase<T>::value> type;
- };
- }
- }
- #endif
|