forked from boostorg/range
Full merge from trunk at revision 41356 of entire boost-root tree.
[SVN r41369]
This commit is contained in:
45
include/boost/range/as_array.hpp
Executable file
45
include/boost/range/as_array.hpp
Executable file
@ -0,0 +1,45 @@
|
|||||||
|
// Boost.Range library
|
||||||
|
//
|
||||||
|
// Copyright Thorsten Ottosen 2006. Use, modification and
|
||||||
|
// distribution is subject to the Boost Software License, Version
|
||||||
|
// 1.0. (See accompanying file LICENSE_1_0.txt or copy at
|
||||||
|
// http://www.boost.org/LICENSE_1_0.txt)
|
||||||
|
//
|
||||||
|
// For more information, see http://www.boost.org/libs/range/
|
||||||
|
//
|
||||||
|
|
||||||
|
#ifndef BOOST_RANGE_AS_ARRAY_HPP
|
||||||
|
#define BOOST_RANGE_AS_ARRAY_HPP
|
||||||
|
|
||||||
|
#if defined(_MSC_VER) && (_MSC_VER >= 1200)
|
||||||
|
# pragma once
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#include <boost/range/iterator_range.hpp>
|
||||||
|
#include <boost/range/detail/str_types.hpp>
|
||||||
|
|
||||||
|
namespace boost
|
||||||
|
{
|
||||||
|
|
||||||
|
template< class R >
|
||||||
|
inline iterator_range< BOOST_DEDUCED_TYPENAME range_iterator<R>::type >
|
||||||
|
as_array( R& r )
|
||||||
|
{
|
||||||
|
return boost::make_iterator_range( r );
|
||||||
|
}
|
||||||
|
|
||||||
|
#ifndef BOOST_NO_FUNCTION_TEMPLATE_ORDERING
|
||||||
|
|
||||||
|
template< class Range >
|
||||||
|
inline boost::iterator_range< BOOST_DEDUCED_TYPENAME range_iterator<const Range>::type >
|
||||||
|
as_array( const Range& r )
|
||||||
|
{
|
||||||
|
return boost::make_iterator_range( r );
|
||||||
|
}
|
||||||
|
|
||||||
|
#endif
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
#endif
|
||||||
|
|
131
include/boost/range/as_literal.hpp
Executable file
131
include/boost/range/as_literal.hpp
Executable file
@ -0,0 +1,131 @@
|
|||||||
|
// Boost.Range library
|
||||||
|
//
|
||||||
|
// Copyright Thorsten Ottosen 2006. Use, modification and
|
||||||
|
// distribution is subject to the Boost Software License, Version
|
||||||
|
// 1.0. (See accompanying file LICENSE_1_0.txt or copy at
|
||||||
|
// http://www.boost.org/LICENSE_1_0.txt)
|
||||||
|
//
|
||||||
|
// For more information, see http://www.boost.org/libs/range/
|
||||||
|
//
|
||||||
|
|
||||||
|
#ifndef BOOST_RANGE_DETAIL_AS_LITERAL_HPP
|
||||||
|
#define BOOST_RANGE_DETAIL_AS_LITERAL_HPP
|
||||||
|
|
||||||
|
#if defined(_MSC_VER) && (_MSC_VER >= 1200)
|
||||||
|
# pragma once
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if BOOST_NO_FUNCTION_TEMPLATE_ORDERING
|
||||||
|
#include <boost/range/detail/as_literal.hpp>
|
||||||
|
#else
|
||||||
|
|
||||||
|
#include <boost/range/iterator_range.hpp>
|
||||||
|
#include <boost/range/detail/str_types.hpp>
|
||||||
|
|
||||||
|
#include <boost/detail/workaround.hpp>
|
||||||
|
|
||||||
|
#include <cstring>
|
||||||
|
#include <cwchar>
|
||||||
|
|
||||||
|
namespace boost
|
||||||
|
{
|
||||||
|
namespace range_detail
|
||||||
|
{
|
||||||
|
inline std::size_t length( const char* s )
|
||||||
|
{
|
||||||
|
return strlen( s );
|
||||||
|
}
|
||||||
|
|
||||||
|
inline std::size_t length( const wchar_t* s )
|
||||||
|
{
|
||||||
|
return wcslen( s );
|
||||||
|
}
|
||||||
|
|
||||||
|
//
|
||||||
|
// Remark: the compiler cannot choose between T* and T[sz]
|
||||||
|
// overloads, so we must put the T* internal to the
|
||||||
|
// unconstrained version.
|
||||||
|
//
|
||||||
|
|
||||||
|
inline bool is_char_ptr( char* )
|
||||||
|
{
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
inline bool is_char_ptr( const char* )
|
||||||
|
{
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
inline bool is_char_ptr( wchar_t* )
|
||||||
|
{
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
inline bool is_char_ptr( const wchar_t* )
|
||||||
|
{
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
template< class T >
|
||||||
|
inline long is_char_ptr( T /* r */ )
|
||||||
|
{
|
||||||
|
return 0L;
|
||||||
|
}
|
||||||
|
|
||||||
|
template< class T >
|
||||||
|
inline iterator_range<T*>
|
||||||
|
make_range( T* const r, bool )
|
||||||
|
{
|
||||||
|
return iterator_range<T*>( r, r + length(r) );
|
||||||
|
}
|
||||||
|
|
||||||
|
template< class T >
|
||||||
|
inline iterator_range<BOOST_DEDUCED_TYPENAME range_iterator<T>::type>
|
||||||
|
make_range( T& r, long )
|
||||||
|
{
|
||||||
|
return boost::make_iterator_range( r );
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
template< class Range >
|
||||||
|
inline iterator_range<BOOST_DEDUCED_TYPENAME range_iterator<Range>::type>
|
||||||
|
as_literal( Range& r )
|
||||||
|
{
|
||||||
|
return range_detail::make_range( r, range_detail::is_char_ptr(r) );
|
||||||
|
}
|
||||||
|
|
||||||
|
template< class Range >
|
||||||
|
inline iterator_range<BOOST_DEDUCED_TYPENAME range_iterator<const Range>::type>
|
||||||
|
as_literal( const Range& r )
|
||||||
|
{
|
||||||
|
return range_detail::make_range( r, range_detail::is_char_ptr(r) );
|
||||||
|
}
|
||||||
|
|
||||||
|
template< class Char, std::size_t sz >
|
||||||
|
inline iterator_range<Char*> as_literal( Char (&arr)[sz] )
|
||||||
|
{
|
||||||
|
#if BOOST_WORKAROUND(__BORLANDC__, BOOST_TESTED_AT(0x590)) && __BORLANDC__ >= 0x590
|
||||||
|
return boost::make_iterator_range<Char*>( arr, arr + sz - 1 );
|
||||||
|
#else
|
||||||
|
return boost::make_iterator_range( arr, arr + sz - 1 );
|
||||||
|
#endif
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
template< class Char, std::size_t sz >
|
||||||
|
inline iterator_range<const Char*> as_literal( const Char (&arr)[sz] )
|
||||||
|
{
|
||||||
|
#if BOOST_WORKAROUND(__BORLANDC__, BOOST_TESTED_AT(0x590)) && __BORLANDC__ >= 0x590
|
||||||
|
return boost::make_iterator_range<const Char*>( arr, arr + sz - 1 );
|
||||||
|
#else
|
||||||
|
return boost::make_iterator_range( arr, arr + sz - 1 );
|
||||||
|
#endif
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
#endif // BOOST_NO_FUNCTION_TEMPLATE_ORDERING
|
||||||
|
|
||||||
|
#endif
|
733
include/boost/range/atl.hpp
Normal file
733
include/boost/range/atl.hpp
Normal file
@ -0,0 +1,733 @@
|
|||||||
|
#ifndef BOOST_RANGE_ATL_HPP
|
||||||
|
#define BOOST_RANGE_ATL_HPP
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
// Boost.Range ATL Extension
|
||||||
|
//
|
||||||
|
// Copyright Shunsuke Sogame 2005-2006.
|
||||||
|
// Distributed under the Boost Software License, Version 1.0.
|
||||||
|
// (See accompanying file LICENSE_1_0.txt or copy at
|
||||||
|
// http://www.boost.org/LICENSE_1_0.txt)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
// config
|
||||||
|
//
|
||||||
|
|
||||||
|
|
||||||
|
#include <atldef.h> // _ATL_VER
|
||||||
|
|
||||||
|
|
||||||
|
#if !defined(BOOST_RANGE_ATL_NO_COLLECTIONS)
|
||||||
|
#if (_ATL_VER < 0x0700)
|
||||||
|
#define BOOST_RANGE_ATL_NO_COLLECTIONS
|
||||||
|
#endif
|
||||||
|
#endif
|
||||||
|
|
||||||
|
|
||||||
|
#if !defined(BOOST_RANGE_ATL_HAS_OLD_CSIMPLE_XXX)
|
||||||
|
#if (_ATL_VER < 0x0700) // dubious
|
||||||
|
#define BOOST_RANGE_ATL_HAS_OLD_CSIMPLE_XXX
|
||||||
|
#endif
|
||||||
|
#endif
|
||||||
|
|
||||||
|
|
||||||
|
#if !defined(BOOST_RANGE_ATL_HAS_OLD_CSIMPLESTRING)
|
||||||
|
#if (_MSC_VER < 1310) // from <boost/regex/mfc.hpp>, but dubious
|
||||||
|
#define BOOST_RANGE_ATL_HAS_OLD_CSIMPLESTRING
|
||||||
|
#endif
|
||||||
|
#endif
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
// forward declarations
|
||||||
|
//
|
||||||
|
|
||||||
|
|
||||||
|
#include <basetyps.h> // IID
|
||||||
|
|
||||||
|
|
||||||
|
namespace ATL {
|
||||||
|
|
||||||
|
|
||||||
|
#if !defined(BOOST_RANGE_ATL_NO_COLLECTIONS)
|
||||||
|
|
||||||
|
|
||||||
|
// arrays
|
||||||
|
//
|
||||||
|
template< class E, class ETraits >
|
||||||
|
class CAtlArray;
|
||||||
|
|
||||||
|
template< class E >
|
||||||
|
class CAutoPtrArray;
|
||||||
|
|
||||||
|
template< class I, const IID *piid >
|
||||||
|
class CInterfaceArray;
|
||||||
|
|
||||||
|
|
||||||
|
// lists
|
||||||
|
//
|
||||||
|
template< class E, class ETraits >
|
||||||
|
class CAtlList;
|
||||||
|
|
||||||
|
template< class E >
|
||||||
|
class CAutoPtrList;
|
||||||
|
|
||||||
|
template< class E, class Allocator >
|
||||||
|
class CHeapPtrList;
|
||||||
|
|
||||||
|
template< class I, const IID *piid >
|
||||||
|
class CInterfaceList;
|
||||||
|
|
||||||
|
|
||||||
|
// maps
|
||||||
|
//
|
||||||
|
template< class K, class V, class KTraits, class VTraits >
|
||||||
|
class CAtlMap;
|
||||||
|
|
||||||
|
template< class K, class V, class KTraits, class VTraits >
|
||||||
|
class CRBTree;
|
||||||
|
|
||||||
|
template< class K, class V, class KTraits, class VTraits >
|
||||||
|
class CRBMap;
|
||||||
|
|
||||||
|
template< class K, class V, class KTraits, class VTraits >
|
||||||
|
class CRBMultiMap;
|
||||||
|
|
||||||
|
|
||||||
|
// strings
|
||||||
|
//
|
||||||
|
#if !defined(BOOST_RANGE_ATL_HAS_OLD_CSIMPLESTRING)
|
||||||
|
template< class BaseType, bool t_bMFCDLL >
|
||||||
|
class CSimpleStringT;
|
||||||
|
#else
|
||||||
|
template< class BaseType >
|
||||||
|
class CSimpleStringT;
|
||||||
|
#endif
|
||||||
|
|
||||||
|
template< class BaseType, class StringTraits >
|
||||||
|
class CStringT;
|
||||||
|
|
||||||
|
template< class StringType, int t_nChars >
|
||||||
|
class CFixedStringT;
|
||||||
|
|
||||||
|
template< class BaseType, const int t_nSize >
|
||||||
|
class CStaticString;
|
||||||
|
|
||||||
|
|
||||||
|
#endif // !defined(BOOST_RANGE_ATL_NO_COLLECTIONS)
|
||||||
|
|
||||||
|
|
||||||
|
// simples
|
||||||
|
//
|
||||||
|
#if !defined(BOOST_RANGE_ATL_HAS_OLD_CSIMPLE_XXX)
|
||||||
|
|
||||||
|
template< class T, class TEqual >
|
||||||
|
class CSimpleArray;
|
||||||
|
|
||||||
|
template< class TKey, class TVal, class TEqual >
|
||||||
|
class CSimpleMap;
|
||||||
|
|
||||||
|
#else
|
||||||
|
|
||||||
|
template< class T >
|
||||||
|
class CSimpleArray;
|
||||||
|
|
||||||
|
template< class T >
|
||||||
|
class CSimpleValArray;
|
||||||
|
|
||||||
|
template< class TKey, class TVal >
|
||||||
|
class CSimpleMap;
|
||||||
|
|
||||||
|
#endif // !defined(BOOST_RANGE_ATL_HAS_OLD_CSIMPLE_XXX)
|
||||||
|
|
||||||
|
|
||||||
|
// pointers
|
||||||
|
//
|
||||||
|
template< class E >
|
||||||
|
class CAutoPtr;
|
||||||
|
|
||||||
|
template< class T >
|
||||||
|
class CComPtr;
|
||||||
|
|
||||||
|
template< class T, const IID *piid >
|
||||||
|
class CComQIPtr;
|
||||||
|
|
||||||
|
template< class E, class Allocator >
|
||||||
|
class CHeapPtr;
|
||||||
|
|
||||||
|
template< class T >
|
||||||
|
class CAdapt;
|
||||||
|
|
||||||
|
|
||||||
|
} // namespace ATL
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
// indirect_iterator customizations
|
||||||
|
//
|
||||||
|
|
||||||
|
|
||||||
|
#include <boost/mpl/identity.hpp>
|
||||||
|
#include <boost/pointee.hpp>
|
||||||
|
|
||||||
|
|
||||||
|
namespace boost {
|
||||||
|
|
||||||
|
|
||||||
|
template< class E >
|
||||||
|
struct pointee< ATL::CAutoPtr<E> > :
|
||||||
|
mpl::identity<E>
|
||||||
|
{ };
|
||||||
|
|
||||||
|
template< class T >
|
||||||
|
struct pointee< ATL::CComPtr<T> > :
|
||||||
|
mpl::identity<T>
|
||||||
|
{ };
|
||||||
|
|
||||||
|
template< class T, const IID *piid >
|
||||||
|
struct pointee< ATL::CComQIPtr<T, piid> > :
|
||||||
|
mpl::identity<T>
|
||||||
|
{ };
|
||||||
|
|
||||||
|
template< class E, class Allocator >
|
||||||
|
struct pointee< ATL::CHeapPtr<E, Allocator> > :
|
||||||
|
mpl::identity<E>
|
||||||
|
{ };
|
||||||
|
|
||||||
|
template< class T >
|
||||||
|
struct pointee< ATL::CAdapt<T> > :
|
||||||
|
pointee<T>
|
||||||
|
{ };
|
||||||
|
|
||||||
|
|
||||||
|
} // namespace boost
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
// extended customizations
|
||||||
|
//
|
||||||
|
|
||||||
|
|
||||||
|
#include <boost/iterator/indirect_iterator.hpp>
|
||||||
|
#include <boost/iterator/zip_iterator.hpp>
|
||||||
|
#include <boost/range/detail/microsoft.hpp>
|
||||||
|
#include <boost/tuple/tuple.hpp>
|
||||||
|
#include <atlbase.h> // CComBSTR
|
||||||
|
|
||||||
|
|
||||||
|
namespace boost { namespace range_detail_microsoft {
|
||||||
|
|
||||||
|
|
||||||
|
#if !defined(BOOST_RANGE_ATL_NO_COLLECTIONS)
|
||||||
|
|
||||||
|
|
||||||
|
// arrays
|
||||||
|
//
|
||||||
|
|
||||||
|
struct atl_array_functions :
|
||||||
|
array_functions
|
||||||
|
{
|
||||||
|
template< class Iterator, class X >
|
||||||
|
Iterator end(X& x) // redefine
|
||||||
|
{
|
||||||
|
return x.GetData() + x.GetCount(); // no 'GetSize()'
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
template< class E, class ETraits >
|
||||||
|
struct customization< ATL::CAtlArray<E, ETraits> > :
|
||||||
|
atl_array_functions
|
||||||
|
{
|
||||||
|
template< class X >
|
||||||
|
struct meta
|
||||||
|
{
|
||||||
|
typedef E val_t;
|
||||||
|
|
||||||
|
typedef val_t *mutable_iterator;
|
||||||
|
typedef val_t const *const_iterator;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
template< class E >
|
||||||
|
struct customization< ATL::CAutoPtrArray<E> > :
|
||||||
|
atl_array_functions
|
||||||
|
{
|
||||||
|
template< class X >
|
||||||
|
struct meta
|
||||||
|
{
|
||||||
|
// ATL::CAutoPtr/CHeapPtr is no assignable.
|
||||||
|
typedef ATL::CAutoPtr<E> val_t;
|
||||||
|
typedef val_t *miter_t;
|
||||||
|
typedef val_t const *citer_t;
|
||||||
|
|
||||||
|
typedef indirect_iterator<miter_t> mutable_iterator;
|
||||||
|
typedef indirect_iterator<citer_t> const_iterator;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
template< class I, const IID *piid >
|
||||||
|
struct customization< ATL::CInterfaceArray<I, piid> > :
|
||||||
|
atl_array_functions
|
||||||
|
{
|
||||||
|
template< class X >
|
||||||
|
struct meta
|
||||||
|
{
|
||||||
|
typedef ATL::CComQIPtr<I, piid> val_t;
|
||||||
|
|
||||||
|
typedef val_t *mutable_iterator;
|
||||||
|
typedef val_t const *const_iterator;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
template< class E, class ETraits >
|
||||||
|
struct customization< ATL::CAtlList<E, ETraits> > :
|
||||||
|
list_functions
|
||||||
|
{
|
||||||
|
template< class X >
|
||||||
|
struct meta
|
||||||
|
{
|
||||||
|
typedef E val_t;
|
||||||
|
|
||||||
|
typedef list_iterator<X, val_t> mutable_iterator;
|
||||||
|
typedef list_iterator<X const, val_t const> const_iterator;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
struct indirected_list_functions
|
||||||
|
{
|
||||||
|
template< class Iterator, class X >
|
||||||
|
Iterator begin(X& x)
|
||||||
|
{
|
||||||
|
typedef typename Iterator::base_type base_t; // == list_iterator
|
||||||
|
return Iterator(base_t(x, x.GetHeadPosition()));
|
||||||
|
}
|
||||||
|
|
||||||
|
template< class Iterator, class X >
|
||||||
|
Iterator end(X& x)
|
||||||
|
{
|
||||||
|
typedef typename Iterator::base_type base_t;
|
||||||
|
return Iterator(base_t(x, POSITION(0)));
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
template< class E >
|
||||||
|
struct customization< ATL::CAutoPtrList<E> > :
|
||||||
|
indirected_list_functions
|
||||||
|
{
|
||||||
|
template< class X >
|
||||||
|
struct meta
|
||||||
|
{
|
||||||
|
typedef ATL::CAutoPtr<E> val_t;
|
||||||
|
typedef list_iterator<X, val_t> miter_t;
|
||||||
|
typedef list_iterator<X const, val_t const> citer_t;
|
||||||
|
|
||||||
|
typedef indirect_iterator<miter_t> mutable_iterator;
|
||||||
|
typedef indirect_iterator<citer_t> const_iterator;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
template< class E, class Allocator >
|
||||||
|
struct customization< ATL::CHeapPtrList<E, Allocator> > :
|
||||||
|
indirected_list_functions
|
||||||
|
{
|
||||||
|
template< class X >
|
||||||
|
struct meta
|
||||||
|
{
|
||||||
|
typedef ATL::CHeapPtr<E, Allocator> val_t;
|
||||||
|
typedef list_iterator<X, val_t> miter_t;
|
||||||
|
typedef list_iterator<X const, val_t const> citer_t;
|
||||||
|
|
||||||
|
typedef indirect_iterator<miter_t> mutable_iterator;
|
||||||
|
typedef indirect_iterator<citer_t> const_iterator;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
template< class I, const IID *piid >
|
||||||
|
struct customization< ATL::CInterfaceList<I, piid> > :
|
||||||
|
list_functions
|
||||||
|
{
|
||||||
|
template< class X >
|
||||||
|
struct meta
|
||||||
|
{
|
||||||
|
typedef ATL::CComQIPtr<I, piid> val_t;
|
||||||
|
|
||||||
|
typedef list_iterator<X, val_t> mutable_iterator;
|
||||||
|
typedef list_iterator<X const, val_t const> const_iterator;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
// maps
|
||||||
|
//
|
||||||
|
|
||||||
|
struct atl_rb_tree_tag
|
||||||
|
{ };
|
||||||
|
|
||||||
|
template< >
|
||||||
|
struct customization< atl_rb_tree_tag > :
|
||||||
|
indirected_list_functions
|
||||||
|
{
|
||||||
|
template< class X >
|
||||||
|
struct meta
|
||||||
|
{
|
||||||
|
typedef typename X::CPair val_t;
|
||||||
|
|
||||||
|
typedef list_iterator<X, val_t *, val_t *> miter_t;
|
||||||
|
typedef list_iterator<X const, val_t const *, val_t const *> citer_t;
|
||||||
|
|
||||||
|
typedef indirect_iterator<miter_t> mutable_iterator;
|
||||||
|
typedef indirect_iterator<citer_t> const_iterator;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
template< class K, class V, class KTraits, class VTraits >
|
||||||
|
struct customization< ATL::CAtlMap<K, V, KTraits, VTraits> > :
|
||||||
|
customization< atl_rb_tree_tag >
|
||||||
|
{
|
||||||
|
template< class Iterator, class X >
|
||||||
|
Iterator begin(X& x) // redefine
|
||||||
|
{
|
||||||
|
typedef typename Iterator::base_type base_t; // == list_iterator
|
||||||
|
return Iterator(base_t(x, x.GetStartPosition())); // no 'GetHeadPosition'
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
// strings
|
||||||
|
//
|
||||||
|
|
||||||
|
struct atl_string_tag
|
||||||
|
{ };
|
||||||
|
|
||||||
|
template< >
|
||||||
|
struct customization< atl_string_tag >
|
||||||
|
{
|
||||||
|
template< class X >
|
||||||
|
struct meta
|
||||||
|
{
|
||||||
|
typedef typename X::PXSTR mutable_iterator;
|
||||||
|
typedef typename X::PCXSTR const_iterator;
|
||||||
|
};
|
||||||
|
|
||||||
|
template< class Iterator, class X >
|
||||||
|
typename mutable_<Iterator, X>::type begin(X& x)
|
||||||
|
{
|
||||||
|
return x.GetBuffer(0);
|
||||||
|
}
|
||||||
|
|
||||||
|
template< class Iterator, class X >
|
||||||
|
Iterator begin(X const& x)
|
||||||
|
{
|
||||||
|
return x.GetString();
|
||||||
|
}
|
||||||
|
|
||||||
|
template< class Iterator, class X >
|
||||||
|
Iterator end(X& x)
|
||||||
|
{
|
||||||
|
return begin<Iterator>(x) + x.GetLength();
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
template< class BaseType, const int t_nSize >
|
||||||
|
struct customization< ATL::CStaticString<BaseType, t_nSize> >
|
||||||
|
{
|
||||||
|
template< class X >
|
||||||
|
struct meta
|
||||||
|
{
|
||||||
|
typedef BaseType const *mutable_iterator;
|
||||||
|
typedef mutable_iterator const_iterator;
|
||||||
|
};
|
||||||
|
|
||||||
|
template< class Iterator, class X >
|
||||||
|
Iterator begin(X const& x)
|
||||||
|
{
|
||||||
|
return x;
|
||||||
|
}
|
||||||
|
|
||||||
|
template< class Iterator, class X >
|
||||||
|
Iterator end(X const& x)
|
||||||
|
{
|
||||||
|
return begin<Iterator>(x) + X::GetLength();
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
#endif // !defined(BOOST_RANGE_ATL_NO_COLLECTIONS)
|
||||||
|
|
||||||
|
|
||||||
|
template< >
|
||||||
|
struct customization< ATL::CComBSTR >
|
||||||
|
{
|
||||||
|
template< class X >
|
||||||
|
struct meta
|
||||||
|
{
|
||||||
|
typedef OLECHAR *mutable_iterator;
|
||||||
|
typedef OLECHAR const *const_iterator;
|
||||||
|
};
|
||||||
|
|
||||||
|
template< class Iterator, class X >
|
||||||
|
Iterator begin(X& x)
|
||||||
|
{
|
||||||
|
return x.operator BSTR();
|
||||||
|
}
|
||||||
|
|
||||||
|
template< class Iterator, class X >
|
||||||
|
Iterator end(X& x)
|
||||||
|
{
|
||||||
|
return begin<Iterator>(x) + x.Length();
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
// simples
|
||||||
|
//
|
||||||
|
|
||||||
|
#if !defined(BOOST_RANGE_ATL_HAS_OLD_CSIMPLE_XXX)
|
||||||
|
template< class T, class TEqual >
|
||||||
|
struct customization< ATL::CSimpleArray<T, TEqual> > :
|
||||||
|
#else
|
||||||
|
template< class T >
|
||||||
|
struct customization< ATL::CSimpleArray<T> > :
|
||||||
|
#endif
|
||||||
|
array_functions
|
||||||
|
{
|
||||||
|
template< class X >
|
||||||
|
struct meta
|
||||||
|
{
|
||||||
|
typedef T val_t;
|
||||||
|
|
||||||
|
typedef val_t *mutable_iterator;
|
||||||
|
typedef val_t const *const_iterator;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
#if defined(BOOST_RANGE_ATL_HAS_OLD_CSIMPLE_XXX)
|
||||||
|
|
||||||
|
template< class T >
|
||||||
|
struct customization< ATL::CSimpleValArray<T> > :
|
||||||
|
array_functions
|
||||||
|
{
|
||||||
|
template< class X >
|
||||||
|
struct meta
|
||||||
|
{
|
||||||
|
typedef T val_t;
|
||||||
|
|
||||||
|
typedef val_t *mutable_iterator;
|
||||||
|
typedef val_t const *const_iterator;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
#endif // defined(BOOST_RANGE_ATL_HAS_OLD_CSIMPLE_XXX)
|
||||||
|
|
||||||
|
|
||||||
|
#if !defined(BOOST_RANGE_ATL_HAS_OLD_CSIMPLE_XXX)
|
||||||
|
template< class TKey, class TVal, class TEqual >
|
||||||
|
struct customization< ATL::CSimpleMap<TKey, TVal, TEqual> >
|
||||||
|
#else
|
||||||
|
template< class TKey, class TVal >
|
||||||
|
struct customization< ATL::CSimpleMap<TKey, TVal> >
|
||||||
|
#endif
|
||||||
|
{
|
||||||
|
template< class X >
|
||||||
|
struct meta
|
||||||
|
{
|
||||||
|
typedef TKey k_val_t;
|
||||||
|
typedef k_val_t *k_miter_t;
|
||||||
|
typedef k_val_t const *k_citer_t;
|
||||||
|
|
||||||
|
typedef TVal v_val_t;
|
||||||
|
typedef v_val_t *v_miter_t;
|
||||||
|
typedef v_val_t const *v_citer_t;
|
||||||
|
|
||||||
|
// Topic:
|
||||||
|
// 'std::pair' can't contain references
|
||||||
|
// because of reference to reference problem.
|
||||||
|
|
||||||
|
typedef zip_iterator< tuple<k_miter_t, v_miter_t> > mutable_iterator;
|
||||||
|
typedef zip_iterator< tuple<k_citer_t, v_citer_t> > const_iterator;
|
||||||
|
};
|
||||||
|
|
||||||
|
template< class Iterator, class X >
|
||||||
|
Iterator begin(X& x)
|
||||||
|
{
|
||||||
|
return Iterator(boost::make_tuple(x.m_aKey, x.m_aVal));
|
||||||
|
}
|
||||||
|
|
||||||
|
template< class Iterator, class X >
|
||||||
|
Iterator end(X& x)
|
||||||
|
{
|
||||||
|
return Iterator(boost::make_tuple(x.m_aKey + x.GetSize(), x.m_aVal + x.GetSize()));
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
} } // namespace boost::range_detail_microsoft
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
// range customizations
|
||||||
|
//
|
||||||
|
|
||||||
|
|
||||||
|
#if !defined(BOOST_RANGE_ATL_NO_COLLECTIONS)
|
||||||
|
|
||||||
|
|
||||||
|
// arrays
|
||||||
|
//
|
||||||
|
BOOST_RANGE_DETAIL_MICROSOFT_CUSTOMIZATION_TEMPLATE(
|
||||||
|
boost::range_detail_microsoft::using_type_as_tag,
|
||||||
|
(ATL, BOOST_PP_NIL), CAtlArray, 2
|
||||||
|
)
|
||||||
|
|
||||||
|
BOOST_RANGE_DETAIL_MICROSOFT_CUSTOMIZATION_TEMPLATE(
|
||||||
|
boost::range_detail_microsoft::using_type_as_tag,
|
||||||
|
(ATL, BOOST_PP_NIL), CAutoPtrArray, 1
|
||||||
|
)
|
||||||
|
|
||||||
|
BOOST_RANGE_DETAIL_MICROSOFT_CUSTOMIZATION_TEMPLATE(
|
||||||
|
boost::range_detail_microsoft::using_type_as_tag,
|
||||||
|
(ATL, BOOST_PP_NIL), CInterfaceArray, (class)(const IID *)
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
// lists
|
||||||
|
//
|
||||||
|
BOOST_RANGE_DETAIL_MICROSOFT_CUSTOMIZATION_TEMPLATE(
|
||||||
|
boost::range_detail_microsoft::using_type_as_tag,
|
||||||
|
(ATL, BOOST_PP_NIL), CAtlList, 2
|
||||||
|
)
|
||||||
|
|
||||||
|
BOOST_RANGE_DETAIL_MICROSOFT_CUSTOMIZATION_TEMPLATE(
|
||||||
|
boost::range_detail_microsoft::using_type_as_tag,
|
||||||
|
(ATL, BOOST_PP_NIL), CAutoPtrList, 1
|
||||||
|
)
|
||||||
|
|
||||||
|
BOOST_RANGE_DETAIL_MICROSOFT_CUSTOMIZATION_TEMPLATE(
|
||||||
|
boost::range_detail_microsoft::using_type_as_tag,
|
||||||
|
(ATL, BOOST_PP_NIL), CHeapPtrList, 2
|
||||||
|
)
|
||||||
|
|
||||||
|
BOOST_RANGE_DETAIL_MICROSOFT_CUSTOMIZATION_TEMPLATE(
|
||||||
|
boost::range_detail_microsoft::using_type_as_tag,
|
||||||
|
(ATL, BOOST_PP_NIL), CInterfaceList, (class)(const IID *)
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
//maps
|
||||||
|
//
|
||||||
|
BOOST_RANGE_DETAIL_MICROSOFT_CUSTOMIZATION_TEMPLATE(
|
||||||
|
boost::range_detail_microsoft::using_type_as_tag,
|
||||||
|
(ATL, BOOST_PP_NIL), CAtlMap, 4
|
||||||
|
)
|
||||||
|
|
||||||
|
BOOST_RANGE_DETAIL_MICROSOFT_CUSTOMIZATION_TEMPLATE(
|
||||||
|
boost::range_detail_microsoft::atl_rb_tree_tag,
|
||||||
|
(ATL, BOOST_PP_NIL), CRBTree, 4
|
||||||
|
)
|
||||||
|
|
||||||
|
BOOST_RANGE_DETAIL_MICROSOFT_CUSTOMIZATION_TEMPLATE(
|
||||||
|
boost::range_detail_microsoft::atl_rb_tree_tag,
|
||||||
|
(ATL, BOOST_PP_NIL), CRBMap, 4
|
||||||
|
)
|
||||||
|
|
||||||
|
BOOST_RANGE_DETAIL_MICROSOFT_CUSTOMIZATION_TEMPLATE(
|
||||||
|
boost::range_detail_microsoft::atl_rb_tree_tag,
|
||||||
|
(ATL, BOOST_PP_NIL), CRBMultiMap, 4
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
// strings
|
||||||
|
//
|
||||||
|
#if !defined(BOOST_RANGE_ATL_HAS_OLD_CSIMPLESTRING)
|
||||||
|
BOOST_RANGE_DETAIL_MICROSOFT_CUSTOMIZATION_TEMPLATE(
|
||||||
|
boost::range_detail_microsoft::atl_string_tag,
|
||||||
|
(ATL, BOOST_PP_NIL), CSimpleStringT, (class)(bool)
|
||||||
|
)
|
||||||
|
#else
|
||||||
|
BOOST_RANGE_DETAIL_MICROSOFT_CUSTOMIZATION_TEMPLATE(
|
||||||
|
boost::range_detail_microsoft::atl_string_tag,
|
||||||
|
(ATL, BOOST_PP_NIL), CSimpleStringT, 1
|
||||||
|
)
|
||||||
|
#endif
|
||||||
|
|
||||||
|
BOOST_RANGE_DETAIL_MICROSOFT_CUSTOMIZATION_TEMPLATE(
|
||||||
|
boost::range_detail_microsoft::atl_string_tag,
|
||||||
|
(ATL, BOOST_PP_NIL), CStringT, 2
|
||||||
|
)
|
||||||
|
|
||||||
|
BOOST_RANGE_DETAIL_MICROSOFT_CUSTOMIZATION_TEMPLATE(
|
||||||
|
boost::range_detail_microsoft::atl_string_tag,
|
||||||
|
(ATL, BOOST_PP_NIL), CFixedStringT, (class)(int)
|
||||||
|
)
|
||||||
|
|
||||||
|
BOOST_RANGE_DETAIL_MICROSOFT_CUSTOMIZATION_TEMPLATE(
|
||||||
|
boost::range_detail_microsoft::using_type_as_tag,
|
||||||
|
(ATL, BOOST_PP_NIL), CStaticString, (class)(const int)
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
#endif // !defined(BOOST_RANGE_ATL_NO_COLLECTIONS)
|
||||||
|
|
||||||
|
|
||||||
|
BOOST_RANGE_DETAIL_MICROSOFT_CUSTOMIZATION_TYPE(
|
||||||
|
boost::range_detail_microsoft::using_type_as_tag,
|
||||||
|
(ATL, BOOST_PP_NIL), CComBSTR
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
// simples
|
||||||
|
//
|
||||||
|
#if !defined(BOOST_RANGE_ATL_HAS_OLD_CSIMPLE_XXX)
|
||||||
|
|
||||||
|
BOOST_RANGE_DETAIL_MICROSOFT_CUSTOMIZATION_TEMPLATE(
|
||||||
|
boost::range_detail_microsoft::using_type_as_tag,
|
||||||
|
(ATL, BOOST_PP_NIL), CSimpleArray, 2
|
||||||
|
)
|
||||||
|
|
||||||
|
BOOST_RANGE_DETAIL_MICROSOFT_CUSTOMIZATION_TEMPLATE(
|
||||||
|
boost::range_detail_microsoft::using_type_as_tag,
|
||||||
|
(ATL, BOOST_PP_NIL), CSimpleMap, 3
|
||||||
|
)
|
||||||
|
|
||||||
|
#else
|
||||||
|
|
||||||
|
BOOST_RANGE_DETAIL_MICROSOFT_CUSTOMIZATION_TEMPLATE(
|
||||||
|
boost::range_detail_microsoft::using_type_as_tag,
|
||||||
|
(ATL, BOOST_PP_NIL), CSimpleArray, 1
|
||||||
|
)
|
||||||
|
|
||||||
|
BOOST_RANGE_DETAIL_MICROSOFT_CUSTOMIZATION_TEMPLATE(
|
||||||
|
boost::range_detail_microsoft::using_type_as_tag,
|
||||||
|
(ATL, BOOST_PP_NIL), CSimpleMap, 2
|
||||||
|
)
|
||||||
|
|
||||||
|
BOOST_RANGE_DETAIL_MICROSOFT_CUSTOMIZATION_TEMPLATE(
|
||||||
|
boost::range_detail_microsoft::using_type_as_tag,
|
||||||
|
(ATL, BOOST_PP_NIL), CSimpleValArray, 1
|
||||||
|
)
|
||||||
|
|
||||||
|
#endif // !defined(BOOST_RANGE_ATL_HAS_OLD_CSIMPLE_XXX)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
#endif
|
@ -15,7 +15,6 @@
|
|||||||
# pragma once
|
# pragma once
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#include <boost/type_traits/remove_const.hpp>
|
|
||||||
#include <boost/range/config.hpp>
|
#include <boost/range/config.hpp>
|
||||||
|
|
||||||
#ifdef BOOST_NO_FUNCTION_TEMPLATE_ORDERING
|
#ifdef BOOST_NO_FUNCTION_TEMPLATE_ORDERING
|
||||||
@ -23,7 +22,6 @@
|
|||||||
#else
|
#else
|
||||||
|
|
||||||
#include <boost/range/iterator.hpp>
|
#include <boost/range/iterator.hpp>
|
||||||
#include <boost/range/const_iterator.hpp>
|
|
||||||
|
|
||||||
namespace boost
|
namespace boost
|
||||||
{
|
{
|
||||||
@ -40,17 +38,14 @@ namespace range_detail
|
|||||||
//////////////////////////////////////////////////////////////////////
|
//////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
template< typename C >
|
template< typename C >
|
||||||
inline BOOST_DEDUCED_TYPENAME range_const_iterator<C>::type
|
inline BOOST_DEDUCED_TYPENAME range_iterator<C>::type
|
||||||
boost_range_begin( const C& c )
|
range_begin( C& c )
|
||||||
{
|
|
||||||
return c.begin();
|
|
||||||
}
|
|
||||||
|
|
||||||
template< typename C >
|
|
||||||
inline BOOST_DEDUCED_TYPENAME range_iterator<
|
|
||||||
typename remove_const<C>::type >::type
|
|
||||||
boost_range_begin( C& c )
|
|
||||||
{
|
{
|
||||||
|
//
|
||||||
|
// If you get a compile-error here, it is most likely because
|
||||||
|
// you have not implemented range_begin() properly in
|
||||||
|
// the namespace of C
|
||||||
|
//
|
||||||
return c.begin();
|
return c.begin();
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -59,13 +54,13 @@ namespace range_detail
|
|||||||
//////////////////////////////////////////////////////////////////////
|
//////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
template< typename Iterator >
|
template< typename Iterator >
|
||||||
inline Iterator boost_range_begin( const std::pair<Iterator,Iterator>& p )
|
inline Iterator range_begin( const std::pair<Iterator,Iterator>& p )
|
||||||
{
|
{
|
||||||
return p.first;
|
return p.first;
|
||||||
}
|
}
|
||||||
|
|
||||||
template< typename Iterator >
|
template< typename Iterator >
|
||||||
inline Iterator boost_range_begin( std::pair<Iterator,Iterator>& p )
|
inline Iterator range_begin( std::pair<Iterator,Iterator>& p )
|
||||||
{
|
{
|
||||||
return p.first;
|
return p.first;
|
||||||
}
|
}
|
||||||
@ -74,66 +69,22 @@ namespace range_detail
|
|||||||
// array
|
// array
|
||||||
//////////////////////////////////////////////////////////////////////
|
//////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
|
//
|
||||||
|
// May this be discarded? Or is it needed for bad compilers?
|
||||||
|
//
|
||||||
template< typename T, std::size_t sz >
|
template< typename T, std::size_t sz >
|
||||||
inline const T* boost_range_begin( const T (&array)[sz] )
|
inline const T* range_begin( const T (&array)[sz] )
|
||||||
{
|
{
|
||||||
return array;
|
return array;
|
||||||
}
|
}
|
||||||
|
|
||||||
template< typename T, std::size_t sz >
|
template< typename T, std::size_t sz >
|
||||||
inline T* boost_range_begin( T (&array)[sz] )
|
inline T* range_begin( T (&array)[sz] )
|
||||||
{
|
{
|
||||||
return array;
|
return array;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
//////////////////////////////////////////////////////////////////////
|
|
||||||
// string
|
|
||||||
//////////////////////////////////////////////////////////////////////
|
|
||||||
|
|
||||||
#if 1 || BOOST_WORKAROUND(__MWERKS__, <= 0x3204 ) || BOOST_WORKAROUND(__BORLANDC__, BOOST_TESTED_AT(0x564))
|
|
||||||
// CW up to 9.3 and borland have troubles with function ordering
|
|
||||||
inline const char* boost_range_begin( const char* s )
|
|
||||||
{
|
|
||||||
return s;
|
|
||||||
}
|
|
||||||
|
|
||||||
inline char* boost_range_begin( char* s )
|
|
||||||
{
|
|
||||||
return s;
|
|
||||||
}
|
|
||||||
|
|
||||||
inline const wchar_t* boost_range_begin( const wchar_t* s )
|
|
||||||
{
|
|
||||||
return s;
|
|
||||||
}
|
|
||||||
|
|
||||||
inline wchar_t* boost_range_begin( wchar_t* s )
|
|
||||||
{
|
|
||||||
return s;
|
|
||||||
}
|
|
||||||
#else
|
|
||||||
inline const char* boost_range_begin( const char*& s )
|
|
||||||
{
|
|
||||||
return s;
|
|
||||||
}
|
|
||||||
|
|
||||||
inline char* boost_range_begin( char*& s )
|
|
||||||
{
|
|
||||||
return s;
|
|
||||||
}
|
|
||||||
|
|
||||||
inline const wchar_t* boost_range_begin( const wchar_t*& s )
|
|
||||||
{
|
|
||||||
return s;
|
|
||||||
}
|
|
||||||
|
|
||||||
inline wchar_t* boost_range_begin( wchar_t*& s )
|
|
||||||
{
|
|
||||||
return s;
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#if !BOOST_WORKAROUND(__BORLANDC__, BOOST_TESTED_AT(0x564)) && \
|
#if !BOOST_WORKAROUND(__BORLANDC__, BOOST_TESTED_AT(0x564)) && \
|
||||||
!BOOST_WORKAROUND(__GNUC__, < 3) \
|
!BOOST_WORKAROUND(__GNUC__, < 3) \
|
||||||
/**/
|
/**/
|
||||||
@ -142,44 +93,27 @@ namespace range_detail
|
|||||||
|
|
||||||
|
|
||||||
template< class T >
|
template< class T >
|
||||||
inline BOOST_DEDUCED_TYPENAME range_iterator<
|
inline BOOST_DEDUCED_TYPENAME range_iterator<T>::type begin( T& r )
|
||||||
typename remove_const<T>::type >::type begin( T& r )
|
|
||||||
{
|
{
|
||||||
#if !BOOST_WORKAROUND(__BORLANDC__, BOOST_TESTED_AT(0x564)) && \
|
#if !BOOST_WORKAROUND(__BORLANDC__, BOOST_TESTED_AT(0x564)) && \
|
||||||
!BOOST_WORKAROUND(__GNUC__, < 3) \
|
!BOOST_WORKAROUND(__GNUC__, < 3) \
|
||||||
/**/
|
/**/
|
||||||
using namespace range_detail;
|
using namespace range_detail;
|
||||||
#endif
|
#endif
|
||||||
return boost_range_begin( r );
|
return range_begin( r );
|
||||||
}
|
}
|
||||||
|
|
||||||
template< class T >
|
template< class T >
|
||||||
inline BOOST_DEDUCED_TYPENAME range_const_iterator<T>::type begin( const T& r )
|
inline BOOST_DEDUCED_TYPENAME range_iterator<const T>::type begin( const T& r )
|
||||||
{
|
{
|
||||||
#if !BOOST_WORKAROUND(__BORLANDC__, BOOST_TESTED_AT(0x564)) && \
|
#if !BOOST_WORKAROUND(__BORLANDC__, BOOST_TESTED_AT(0x564)) && \
|
||||||
!BOOST_WORKAROUND(__GNUC__, < 3) \
|
!BOOST_WORKAROUND(__GNUC__, < 3) \
|
||||||
/**/
|
/**/
|
||||||
using namespace range_detail;
|
using namespace range_detail;
|
||||||
#endif
|
#endif
|
||||||
return boost_range_begin( r );
|
return range_begin( r );
|
||||||
}
|
}
|
||||||
|
|
||||||
#if BOOST_WORKAROUND(__MWERKS__, <= 0x3003 ) || BOOST_WORKAROUND(__BORLANDC__, BOOST_TESTED_AT(0x564))
|
|
||||||
// BCB and CW are not able to overload pointer when class overloads are also available.
|
|
||||||
template<>
|
|
||||||
inline range_const_iterator<const char*>::type begin<const char*>( const char*& r )
|
|
||||||
{
|
|
||||||
return r;
|
|
||||||
}
|
|
||||||
|
|
||||||
template<>
|
|
||||||
inline range_const_iterator<const wchar_t*>::type begin<const wchar_t*>( const wchar_t*& r )
|
|
||||||
{
|
|
||||||
return r;
|
|
||||||
}
|
|
||||||
|
|
||||||
#endif
|
|
||||||
|
|
||||||
} // namespace boost
|
} // namespace boost
|
||||||
|
|
||||||
#endif // BOOST_NO_FUNCTION_TEMPLATE_ORDERING
|
#endif // BOOST_NO_FUNCTION_TEMPLATE_ORDERING
|
||||||
@ -187,7 +121,7 @@ inline range_const_iterator<const wchar_t*>::type begin<const wchar_t*>( const w
|
|||||||
namespace boost
|
namespace boost
|
||||||
{
|
{
|
||||||
template< class T >
|
template< class T >
|
||||||
inline BOOST_DEDUCED_TYPENAME range_const_iterator<T>::type
|
inline BOOST_DEDUCED_TYPENAME range_iterator<const T>::type
|
||||||
const_begin( const T& r )
|
const_begin( const T& r )
|
||||||
{
|
{
|
||||||
return boost::begin( r );
|
return boost::begin( r );
|
||||||
@ -195,3 +129,4 @@ namespace boost
|
|||||||
}
|
}
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
29
include/boost/range/category.hpp
Executable file
29
include/boost/range/category.hpp
Executable file
@ -0,0 +1,29 @@
|
|||||||
|
// Boost.Range library
|
||||||
|
//
|
||||||
|
// Copyright Thorsten Ottosen 2003-2006. Use, modification and
|
||||||
|
// distribution is subject to the Boost Software License, Version
|
||||||
|
// 1.0. (See accompanying file LICENSE_1_0.txt or copy at
|
||||||
|
// http://www.boost.org/LICENSE_1_0.txt)
|
||||||
|
//
|
||||||
|
// For more information, see http://www.boost.org/libs/range/
|
||||||
|
//
|
||||||
|
|
||||||
|
#ifndef BOOST_RANGE_CATEGORY_HPP
|
||||||
|
#define BOOST_RANGE_CATEGORY_HPP
|
||||||
|
|
||||||
|
#if defined(_MSC_VER) && (_MSC_VER >= 1200)
|
||||||
|
# pragma once
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#include <boost/range/config.hpp>
|
||||||
|
#include <boost/range/iterator.hpp>
|
||||||
|
#include <boost/iterator/iterator_traits.hpp>
|
||||||
|
|
||||||
|
namespace boost
|
||||||
|
{
|
||||||
|
template< class T >
|
||||||
|
struct range_category : iterator_category< typename range_iterator<T>::type >
|
||||||
|
{ };
|
||||||
|
}
|
||||||
|
|
||||||
|
#endif
|
@ -13,8 +13,8 @@
|
|||||||
|
|
||||||
#include <boost/concept_check.hpp>
|
#include <boost/concept_check.hpp>
|
||||||
#include <boost/iterator/iterator_concepts.hpp>
|
#include <boost/iterator/iterator_concepts.hpp>
|
||||||
#include <boost/range/functions.hpp>
|
#include <boost/range/begin.hpp>
|
||||||
#include <boost/range/metafunctions.hpp>
|
#include <boost/range/end.hpp>
|
||||||
|
|
||||||
/*!
|
/*!
|
||||||
* \file
|
* \file
|
||||||
@ -57,10 +57,11 @@ namespace boost {
|
|||||||
|
|
||||||
//! Check if a type T models the SinglePassRange range concept.
|
//! Check if a type T models the SinglePassRange range concept.
|
||||||
template<typename T>
|
template<typename T>
|
||||||
struct SinglePassRangeConcept {
|
struct SinglePassRangeConcept
|
||||||
typedef typename range_value<T>::type range_value;
|
{
|
||||||
|
typedef typename range_iterator<T const>::type range_const_iterator;
|
||||||
typedef typename range_iterator<T>::type range_iterator;
|
typedef typename range_iterator<T>::type range_iterator;
|
||||||
typedef typename range_const_iterator<T>::type range_const_iterator;
|
|
||||||
void constraints()
|
void constraints()
|
||||||
{
|
{
|
||||||
function_requires<
|
function_requires<
|
||||||
@ -70,9 +71,9 @@ namespace boost {
|
|||||||
>();
|
>();
|
||||||
i = boost::begin(a);
|
i = boost::begin(a);
|
||||||
i = boost::end(a);
|
i = boost::end(a);
|
||||||
b = boost::empty(a);
|
|
||||||
const_constraints(a);
|
const_constraints(a);
|
||||||
}
|
}
|
||||||
|
|
||||||
void const_constraints(const T& a)
|
void const_constraints(const T& a)
|
||||||
{
|
{
|
||||||
ci = boost::begin(a);
|
ci = boost::begin(a);
|
||||||
@ -81,14 +82,12 @@ namespace boost {
|
|||||||
T a;
|
T a;
|
||||||
range_iterator i;
|
range_iterator i;
|
||||||
range_const_iterator ci;
|
range_const_iterator ci;
|
||||||
bool b;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
//! Check if a type T models the ForwardRange range concept.
|
//! Check if a type T models the ForwardRange range concept.
|
||||||
template<typename T>
|
template<typename T>
|
||||||
struct ForwardRangeConcept {
|
struct ForwardRangeConcept
|
||||||
typedef typename range_difference<T>::type range_difference;
|
{
|
||||||
typedef typename range_size<T>::type range_size;
|
|
||||||
void constraints()
|
void constraints()
|
||||||
{
|
{
|
||||||
function_requires<
|
function_requires<
|
||||||
@ -99,17 +98,13 @@ namespace boost {
|
|||||||
typename range_iterator<T>::type
|
typename range_iterator<T>::type
|
||||||
>
|
>
|
||||||
>();
|
>();
|
||||||
s = boost::size(a);
|
|
||||||
}
|
}
|
||||||
T a;
|
|
||||||
range_size s;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
//! Check if a type T models the BidirectionalRange range concept.
|
//! Check if a type T models the BidirectionalRange range concept.
|
||||||
template<typename T>
|
template<typename T>
|
||||||
struct BidirectionalRangeConcept {
|
struct BidirectionalRangeConcept
|
||||||
typedef typename range_reverse_iterator<T>::type range_reverse_iterator;
|
{
|
||||||
typedef typename range_const_reverse_iterator<T>::type range_const_reverse_iterator;
|
|
||||||
void constraints()
|
void constraints()
|
||||||
{
|
{
|
||||||
function_requires<
|
function_requires<
|
||||||
@ -120,23 +115,13 @@ namespace boost {
|
|||||||
typename range_iterator<T>::type
|
typename range_iterator<T>::type
|
||||||
>
|
>
|
||||||
>();
|
>();
|
||||||
i = boost::rbegin(a);
|
|
||||||
i = boost::rend(a);
|
|
||||||
const_constraints(a);
|
|
||||||
}
|
}
|
||||||
void const_constraints(const T& a)
|
|
||||||
{
|
|
||||||
ci = boost::rbegin(a);
|
|
||||||
ci = boost::rend(a);
|
|
||||||
}
|
|
||||||
T a;
|
|
||||||
range_reverse_iterator i;
|
|
||||||
range_const_reverse_iterator ci;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
//! Check if a type T models the RandomAccessRange range concept.
|
//! Check if a type T models the RandomAccessRange range concept.
|
||||||
template<typename T>
|
template<typename T>
|
||||||
struct RandomAccessRangeConcept {
|
struct RandomAccessRangeConcept
|
||||||
|
{
|
||||||
void constraints()
|
void constraints()
|
||||||
{
|
{
|
||||||
function_requires<
|
function_requires<
|
||||||
|
@ -37,8 +37,7 @@
|
|||||||
#error "macro already defined!"
|
#error "macro already defined!"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
//#if BOOST_WORKAROUND( BOOST_MSVC, < 1300 ) || __MWERKS__ <= 0x3003
|
#if BOOST_WORKAROUND( BOOST_MSVC, < 1300 ) || BOOST_WORKAROUND( __MWERKS__, <= 0x3003 )
|
||||||
#if _MSC_VER <= 1300 && !defined( __COMO__ ) && !defined( __GNUC__ ) && __MWERKS__ <= 0x3003
|
|
||||||
#define BOOST_RANGE_NO_ARRAY_SUPPORT 1
|
#define BOOST_RANGE_NO_ARRAY_SUPPORT 1
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
@ -21,6 +21,7 @@
|
|||||||
#include <boost/range/detail/const_iterator.hpp>
|
#include <boost/range/detail/const_iterator.hpp>
|
||||||
#else
|
#else
|
||||||
|
|
||||||
|
#include <boost/type_traits/remove_const.hpp>
|
||||||
#include <cstddef>
|
#include <cstddef>
|
||||||
#include <utility>
|
#include <utility>
|
||||||
|
|
||||||
@ -46,12 +47,6 @@ namespace boost
|
|||||||
typedef Iterator type;
|
typedef Iterator type;
|
||||||
};
|
};
|
||||||
|
|
||||||
template< typename Iterator >
|
|
||||||
struct range_const_iterator< const std::pair<Iterator,Iterator> >
|
|
||||||
{
|
|
||||||
typedef Iterator type;
|
|
||||||
};
|
|
||||||
|
|
||||||
//////////////////////////////////////////////////////////////////////////
|
//////////////////////////////////////////////////////////////////////////
|
||||||
// array
|
// array
|
||||||
//////////////////////////////////////////////////////////////////////////
|
//////////////////////////////////////////////////////////////////////////
|
||||||
@ -62,64 +57,6 @@ namespace boost
|
|||||||
typedef const T* type;
|
typedef const T* type;
|
||||||
};
|
};
|
||||||
|
|
||||||
template< typename T, std::size_t sz >
|
|
||||||
struct range_const_iterator< const T[sz] >
|
|
||||||
{
|
|
||||||
typedef const T* type;
|
|
||||||
};
|
|
||||||
|
|
||||||
//////////////////////////////////////////////////////////////////////////
|
|
||||||
// string
|
|
||||||
//////////////////////////////////////////////////////////////////////////
|
|
||||||
|
|
||||||
template<>
|
|
||||||
struct range_const_iterator< char* >
|
|
||||||
{
|
|
||||||
typedef const char* type;
|
|
||||||
};
|
|
||||||
|
|
||||||
template<>
|
|
||||||
struct range_const_iterator< wchar_t* >
|
|
||||||
{
|
|
||||||
typedef const wchar_t* type;
|
|
||||||
};
|
|
||||||
|
|
||||||
template<>
|
|
||||||
struct range_const_iterator< const char* >
|
|
||||||
{
|
|
||||||
typedef const char* type;
|
|
||||||
};
|
|
||||||
|
|
||||||
template<>
|
|
||||||
struct range_const_iterator< const wchar_t* >
|
|
||||||
{
|
|
||||||
typedef const wchar_t* type;
|
|
||||||
};
|
|
||||||
|
|
||||||
template<>
|
|
||||||
struct range_const_iterator< char* const >
|
|
||||||
{
|
|
||||||
typedef const char* type;
|
|
||||||
};
|
|
||||||
|
|
||||||
template<>
|
|
||||||
struct range_const_iterator< wchar_t* const >
|
|
||||||
{
|
|
||||||
typedef const wchar_t* type;
|
|
||||||
};
|
|
||||||
|
|
||||||
template<>
|
|
||||||
struct range_const_iterator< const char* const >
|
|
||||||
{
|
|
||||||
typedef const char* type;
|
|
||||||
};
|
|
||||||
|
|
||||||
template<>
|
|
||||||
struct range_const_iterator< const wchar_t* const >
|
|
||||||
{
|
|
||||||
typedef const wchar_t* type;
|
|
||||||
};
|
|
||||||
|
|
||||||
} // namespace boost
|
} // namespace boost
|
||||||
|
|
||||||
#endif // BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION
|
#endif // BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION
|
||||||
|
@ -15,22 +15,17 @@
|
|||||||
# pragma once
|
# pragma once
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#include <boost/range/config.hpp>
|
#include <boost/range/reverse_iterator.hpp>
|
||||||
#include <boost/range/const_iterator.hpp>
|
|
||||||
#include <boost/iterator/reverse_iterator.hpp>
|
|
||||||
|
|
||||||
namespace boost
|
namespace boost
|
||||||
{
|
{
|
||||||
//////////////////////////////////////////////////////////////////////////
|
//
|
||||||
// default
|
// This interface is deprecated, use range_reverse_iterator<const T>
|
||||||
//////////////////////////////////////////////////////////////////////////
|
//
|
||||||
|
|
||||||
template< typename C >
|
template< typename C >
|
||||||
struct range_const_reverse_iterator
|
struct range_const_reverse_iterator : range_reverse_iterator<const C>
|
||||||
{
|
{ };
|
||||||
typedef reverse_iterator<
|
|
||||||
BOOST_DEDUCED_TYPENAME range_const_iterator<C>::type > type;
|
|
||||||
};
|
|
||||||
|
|
||||||
} // namespace boost
|
} // namespace boost
|
||||||
|
|
||||||
|
33
include/boost/range/detail/as_literal.hpp
Executable file
33
include/boost/range/detail/as_literal.hpp
Executable file
@ -0,0 +1,33 @@
|
|||||||
|
// Boost.Range library
|
||||||
|
//
|
||||||
|
// Copyright Thorsten Ottosen 2006. Use, modification and
|
||||||
|
// distribution is subject to the Boost Software License, Version
|
||||||
|
// 1.0. (See accompanying file LICENSE_1_0.txt or copy at
|
||||||
|
// http://www.boost.org/LICENSE_1_0.txt)
|
||||||
|
//
|
||||||
|
// For more information, see http://www.boost.org/libs/range/
|
||||||
|
//
|
||||||
|
|
||||||
|
#ifndef BOOST_RANGE_AS_LITERAL_HPP
|
||||||
|
#define BOOST_RANGE_AS_LITERAL_HPP
|
||||||
|
|
||||||
|
#if defined(_MSC_VER) && (_MSC_VER >= 1200)
|
||||||
|
# pragma once
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#include <boost/range/detail/detail_str.hpp>
|
||||||
|
#include <boost/range/iterator_range.hpp>
|
||||||
|
|
||||||
|
namespace boost
|
||||||
|
{
|
||||||
|
template< class Range >
|
||||||
|
inline iterator_range<BOOST_DEDUCED_TYPENAME range_iterator<Range>::type>
|
||||||
|
as_literal( Range& r )
|
||||||
|
{
|
||||||
|
return ::boost::make_iterator_range( ::boost::range_detail::str_begin(r),
|
||||||
|
::boost::range_detail::str_end(r) );
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
#endif
|
@ -13,7 +13,7 @@
|
|||||||
|
|
||||||
#include <boost/config.hpp> // BOOST_MSVC
|
#include <boost/config.hpp> // BOOST_MSVC
|
||||||
#include <boost/detail/workaround.hpp>
|
#include <boost/detail/workaround.hpp>
|
||||||
#include <boost/range/result_iterator.hpp>
|
#include <boost/range/iterator.hpp>
|
||||||
#include <boost/range/detail/common.hpp>
|
#include <boost/range/detail/common.hpp>
|
||||||
#if BOOST_WORKAROUND(BOOST_MSVC, < 1310)
|
#if BOOST_WORKAROUND(BOOST_MSVC, < 1310)
|
||||||
# include <boost/range/value_type.hpp>
|
# include <boost/range/value_type.hpp>
|
||||||
@ -35,7 +35,7 @@ namespace boost
|
|||||||
struct range_begin<std_container_>
|
struct range_begin<std_container_>
|
||||||
{
|
{
|
||||||
template< typename C >
|
template< typename C >
|
||||||
static BOOST_RANGE_DEDUCED_TYPENAME range_result_iterator<C>::type fun( C& c )
|
static BOOST_RANGE_DEDUCED_TYPENAME range_iterator<C>::type fun( C& c )
|
||||||
{
|
{
|
||||||
return c.begin();
|
return c.begin();
|
||||||
};
|
};
|
||||||
@ -49,7 +49,7 @@ namespace boost
|
|||||||
struct range_begin<std_pair_>
|
struct range_begin<std_pair_>
|
||||||
{
|
{
|
||||||
template< typename P >
|
template< typename P >
|
||||||
static BOOST_RANGE_DEDUCED_TYPENAME range_result_iterator<P>::type fun( const P& p )
|
static BOOST_RANGE_DEDUCED_TYPENAME range_iterator<P>::type fun( const P& p )
|
||||||
{
|
{
|
||||||
return p.first;
|
return p.first;
|
||||||
}
|
}
|
||||||
@ -77,51 +77,10 @@ namespace boost
|
|||||||
#endif
|
#endif
|
||||||
};
|
};
|
||||||
|
|
||||||
//////////////////////////////////////////////////////////////////////
|
|
||||||
// string
|
|
||||||
//////////////////////////////////////////////////////////////////////
|
|
||||||
|
|
||||||
template<>
|
|
||||||
struct range_begin<char_ptr_>
|
|
||||||
{
|
|
||||||
static char* fun( char* s )
|
|
||||||
{
|
|
||||||
return s;
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
template<>
|
|
||||||
struct range_begin<const_char_ptr_>
|
|
||||||
{
|
|
||||||
static const char* fun( const char* s )
|
|
||||||
{
|
|
||||||
return s;
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
template<>
|
|
||||||
struct range_begin<wchar_t_ptr_>
|
|
||||||
{
|
|
||||||
|
|
||||||
static wchar_t* fun( wchar_t* s )
|
|
||||||
{
|
|
||||||
return s;
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
template<>
|
|
||||||
struct range_begin<const_wchar_t_ptr_>
|
|
||||||
{
|
|
||||||
static const wchar_t* fun( const wchar_t* s )
|
|
||||||
{
|
|
||||||
return s;
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
} // namespace 'range_detail'
|
} // namespace 'range_detail'
|
||||||
|
|
||||||
template< typename C >
|
template< typename C >
|
||||||
inline BOOST_RANGE_DEDUCED_TYPENAME range_result_iterator<C>::type
|
inline BOOST_RANGE_DEDUCED_TYPENAME range_iterator<C>::type
|
||||||
begin( C& c )
|
begin( C& c )
|
||||||
{
|
{
|
||||||
return range_detail::range_begin< BOOST_RANGE_DEDUCED_TYPENAME range_detail::range<C>::type >::fun( c );
|
return range_detail::range_begin< BOOST_RANGE_DEDUCED_TYPENAME range_detail::range<C>::type >::fun( c );
|
||||||
|
@ -114,3 +114,4 @@ namespace boost
|
|||||||
}
|
}
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
@ -56,58 +56,6 @@ namespace boost
|
|||||||
remove_extent<T>::type* type;
|
remove_extent<T>::type* type;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
template<>
|
|
||||||
struct range_const_iterator_<char_array_>
|
|
||||||
{
|
|
||||||
template< typename T >
|
|
||||||
struct pts
|
|
||||||
{
|
|
||||||
typedef const BOOST_RANGE_DEDUCED_TYPENAME
|
|
||||||
remove_extent<T>::type* type;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
template<>
|
|
||||||
struct range_const_iterator_<char_ptr_>
|
|
||||||
{
|
|
||||||
template< typename S >
|
|
||||||
struct pts
|
|
||||||
{
|
|
||||||
typedef const char* type;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
template<>
|
|
||||||
struct range_const_iterator_<const_char_ptr_>
|
|
||||||
{
|
|
||||||
template< typename S >
|
|
||||||
struct pts
|
|
||||||
{
|
|
||||||
typedef const char* type;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
template<>
|
|
||||||
struct range_const_iterator_<wchar_t_ptr_>
|
|
||||||
{
|
|
||||||
template< typename S >
|
|
||||||
struct pts
|
|
||||||
{
|
|
||||||
typedef const wchar_t* type;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
template<>
|
|
||||||
struct range_const_iterator_<const_wchar_t_ptr_>
|
|
||||||
{
|
|
||||||
template< typename S >
|
|
||||||
struct pts
|
|
||||||
{
|
|
||||||
typedef const wchar_t* type;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
template< typename C >
|
template< typename C >
|
||||||
|
376
include/boost/range/detail/detail_str.hpp
Executable file
376
include/boost/range/detail/detail_str.hpp
Executable file
@ -0,0 +1,376 @@
|
|||||||
|
// Boost.Range library
|
||||||
|
//
|
||||||
|
// Copyright Thorsten Ottosen 2003-2004. Use, modification and
|
||||||
|
// distribution is subject to the Boost Software License, Version
|
||||||
|
// 1.0. (See accompanying file LICENSE_1_0.txt or copy at
|
||||||
|
// http://www.boost.org/LICENSE_1_0.txt)
|
||||||
|
//
|
||||||
|
// For more information, see http://www.boost.org/libs/range/
|
||||||
|
//
|
||||||
|
|
||||||
|
#ifndef BOOST_RANGE_DETAIL_DETAIL_STR_HPP
|
||||||
|
#define BOOST_RANGE_DETAIL_DETAIL_STR_HPP
|
||||||
|
|
||||||
|
#include <boost/config.hpp> // BOOST_MSVC
|
||||||
|
#include <boost/range/iterator.hpp>
|
||||||
|
|
||||||
|
namespace boost
|
||||||
|
{
|
||||||
|
|
||||||
|
namespace range_detail
|
||||||
|
{
|
||||||
|
//
|
||||||
|
// iterator
|
||||||
|
//
|
||||||
|
|
||||||
|
template<>
|
||||||
|
struct range_iterator_<char_array_>
|
||||||
|
{
|
||||||
|
template< typename T >
|
||||||
|
struct pts
|
||||||
|
{
|
||||||
|
typedef BOOST_RANGE_DEDUCED_TYPENAME
|
||||||
|
remove_extent<T>::type* type;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
template<>
|
||||||
|
struct range_iterator_<char_ptr_>
|
||||||
|
{
|
||||||
|
template< typename S >
|
||||||
|
struct pts
|
||||||
|
{
|
||||||
|
typedef char* type;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
template<>
|
||||||
|
struct range_iterator_<const_char_ptr_>
|
||||||
|
{
|
||||||
|
template< typename S >
|
||||||
|
struct pts
|
||||||
|
{
|
||||||
|
typedef const char* type;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
template<>
|
||||||
|
struct range_iterator_<wchar_t_ptr_>
|
||||||
|
{
|
||||||
|
template< typename S >
|
||||||
|
struct pts
|
||||||
|
{
|
||||||
|
typedef wchar_t* type;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
template<>
|
||||||
|
struct range_iterator_<const_wchar_t_ptr_>
|
||||||
|
{
|
||||||
|
template< typename S >
|
||||||
|
struct pts
|
||||||
|
{
|
||||||
|
typedef const wchar_t* type;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
//
|
||||||
|
// const iterator
|
||||||
|
//
|
||||||
|
|
||||||
|
template<>
|
||||||
|
struct range_const_iterator_<char_array_>
|
||||||
|
{
|
||||||
|
template< typename T >
|
||||||
|
struct pts
|
||||||
|
{
|
||||||
|
typedef const BOOST_RANGE_DEDUCED_TYPENAME
|
||||||
|
remove_extent<T>::type* type;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
template<>
|
||||||
|
struct range_const_iterator_<char_ptr_>
|
||||||
|
{
|
||||||
|
template< typename S >
|
||||||
|
struct pts
|
||||||
|
{
|
||||||
|
typedef const char* type;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
template<>
|
||||||
|
struct range_const_iterator_<const_char_ptr_>
|
||||||
|
{
|
||||||
|
template< typename S >
|
||||||
|
struct pts
|
||||||
|
{
|
||||||
|
typedef const char* type;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
template<>
|
||||||
|
struct range_const_iterator_<wchar_t_ptr_>
|
||||||
|
{
|
||||||
|
template< typename S >
|
||||||
|
struct pts
|
||||||
|
{
|
||||||
|
typedef const wchar_t* type;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
template<>
|
||||||
|
struct range_const_iterator_<const_wchar_t_ptr_>
|
||||||
|
{
|
||||||
|
template< typename S >
|
||||||
|
struct pts
|
||||||
|
{
|
||||||
|
typedef const wchar_t* type;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
#include <boost/range/detail/begin.hpp>
|
||||||
|
#include <boost/range/detail/end.hpp>
|
||||||
|
#include <boost/range/detail/size_type>
|
||||||
|
#include <boost/range/detail/value_type>
|
||||||
|
#include <boost/range/detail/common.hpp>
|
||||||
|
|
||||||
|
namespace boost
|
||||||
|
{
|
||||||
|
|
||||||
|
namespace range_detail
|
||||||
|
{
|
||||||
|
//
|
||||||
|
// str_begin()
|
||||||
|
//
|
||||||
|
template<>
|
||||||
|
struct range_begin<char_ptr_>
|
||||||
|
{
|
||||||
|
static char* fun( char* s )
|
||||||
|
{
|
||||||
|
return s;
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
template<>
|
||||||
|
struct range_begin<const_char_ptr_>
|
||||||
|
{
|
||||||
|
static const char* fun( const char* s )
|
||||||
|
{
|
||||||
|
return s;
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
template<>
|
||||||
|
struct range_begin<wchar_t_ptr_>
|
||||||
|
{
|
||||||
|
|
||||||
|
static wchar_t* fun( wchar_t* s )
|
||||||
|
{
|
||||||
|
return s;
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
template<>
|
||||||
|
struct range_begin<const_wchar_t_ptr_>
|
||||||
|
{
|
||||||
|
static const wchar_t* fun( const wchar_t* s )
|
||||||
|
{
|
||||||
|
return s;
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
template< typename C >
|
||||||
|
inline BOOST_RANGE_DEDUCED_TYPENAME range_iterator<C>::type
|
||||||
|
str_begin( C& c )
|
||||||
|
{
|
||||||
|
return range_detail::range_begin< BOOST_RANGE_DEDUCED_TYPENAME
|
||||||
|
range_detail::range<C>::type >::fun( c );
|
||||||
|
}
|
||||||
|
|
||||||
|
//
|
||||||
|
// str_end()
|
||||||
|
//
|
||||||
|
|
||||||
|
template<>
|
||||||
|
struct range_end<char_array_>
|
||||||
|
{
|
||||||
|
template< typename T, std::size_t sz >
|
||||||
|
static T* fun( T BOOST_RANGE_ARRAY_REF()[sz] )
|
||||||
|
{
|
||||||
|
return boost::range_detail::array_end( boost_range_array );
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
template<>
|
||||||
|
struct range_end<wchar_t_array_>
|
||||||
|
{
|
||||||
|
template< typename T, std::size_t sz >
|
||||||
|
static T* fun( T BOOST_RANGE_ARRAY_REF()[sz] )
|
||||||
|
{
|
||||||
|
return boost::range_detail::array_end( boost_range_array );
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
template<>
|
||||||
|
struct range_end<char_ptr_>
|
||||||
|
{
|
||||||
|
static char* fun( char* s )
|
||||||
|
{
|
||||||
|
return boost::range_detail::str_end( s );
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
template<>
|
||||||
|
struct range_end<const_char_ptr_>
|
||||||
|
{
|
||||||
|
static const char* fun( const char* s )
|
||||||
|
{
|
||||||
|
return boost::range_detail::str_end( s );
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
template<>
|
||||||
|
struct range_end<wchar_t_ptr_>
|
||||||
|
{
|
||||||
|
static wchar_t* fun( wchar_t* s )
|
||||||
|
{
|
||||||
|
return boost::range_detail::str_end( s );
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
template<>
|
||||||
|
struct range_end<const_wchar_t_ptr_>
|
||||||
|
{
|
||||||
|
static const wchar_t* fun( const wchar_t* s )
|
||||||
|
{
|
||||||
|
return boost::range_detail::str_end( s );
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
template< typename C >
|
||||||
|
inline BOOST_RANGE_DEDUCED_TYPENAME range_iterator<C>::type
|
||||||
|
str_end( C& c )
|
||||||
|
{
|
||||||
|
return range_detail::range_end< BOOST_RANGE_DEDUCED_TYPENAME
|
||||||
|
range_detail::range<C>::type >::fun( c );
|
||||||
|
}
|
||||||
|
|
||||||
|
//
|
||||||
|
// size_type
|
||||||
|
//
|
||||||
|
|
||||||
|
template<>
|
||||||
|
struct range_size_type_<char_array_>
|
||||||
|
{
|
||||||
|
template< typename A >
|
||||||
|
struct pts
|
||||||
|
{
|
||||||
|
typedef std::size_t type;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
template<>
|
||||||
|
struct range_size_type_<char_ptr_>
|
||||||
|
{
|
||||||
|
template< typename S >
|
||||||
|
struct pts
|
||||||
|
{
|
||||||
|
typedef std::size_t type;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
template<>
|
||||||
|
struct range_size_type_<const_char_ptr_>
|
||||||
|
{
|
||||||
|
template< typename S >
|
||||||
|
struct pts
|
||||||
|
{
|
||||||
|
typedef std::size_t type;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
template<>
|
||||||
|
struct range_size_type_<wchar_t_ptr_>
|
||||||
|
{
|
||||||
|
template< typename S >
|
||||||
|
struct pts
|
||||||
|
{
|
||||||
|
typedef std::size_t type;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
template<>
|
||||||
|
struct range_size_type_<const_wchar_t_ptr_>
|
||||||
|
{
|
||||||
|
template< typename S >
|
||||||
|
struct pts
|
||||||
|
{
|
||||||
|
typedef std::size_t type;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
//
|
||||||
|
// value_type
|
||||||
|
//
|
||||||
|
|
||||||
|
template<>
|
||||||
|
struct range_value_type_<char_array_>
|
||||||
|
{
|
||||||
|
template< typename T >
|
||||||
|
struct pts
|
||||||
|
{
|
||||||
|
typedef char type;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
template<>
|
||||||
|
struct range_value_type_<char_ptr_>
|
||||||
|
{
|
||||||
|
template< typename S >
|
||||||
|
struct pts
|
||||||
|
{
|
||||||
|
typedef char type;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
template<>
|
||||||
|
struct range_value_type_<const_char_ptr_>
|
||||||
|
{
|
||||||
|
template< typename S >
|
||||||
|
struct pts
|
||||||
|
{
|
||||||
|
typedef const char type;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
template<>
|
||||||
|
struct range_value_type_<wchar_t_ptr_>
|
||||||
|
{
|
||||||
|
template< typename S >
|
||||||
|
struct pts
|
||||||
|
{
|
||||||
|
typedef wchar_t type;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
template<>
|
||||||
|
struct range_value_type_<const_wchar_t_ptr_>
|
||||||
|
{
|
||||||
|
template< typename S >
|
||||||
|
struct pts
|
||||||
|
{
|
||||||
|
typedef const wchar_t type;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
} // namespace 'range_detail'
|
||||||
|
|
||||||
|
} // namespace 'boost'
|
||||||
|
|
||||||
|
|
||||||
|
#endif
|
@ -18,8 +18,7 @@
|
|||||||
# include <boost/range/detail/vc6/end.hpp>
|
# include <boost/range/detail/vc6/end.hpp>
|
||||||
#else
|
#else
|
||||||
# include <boost/range/detail/implementation_help.hpp>
|
# include <boost/range/detail/implementation_help.hpp>
|
||||||
# include <boost/range/detail/implementation_help.hpp>
|
# include <boost/range/iterator.hpp>
|
||||||
# include <boost/range/result_iterator.hpp>
|
|
||||||
# include <boost/range/detail/common.hpp>
|
# include <boost/range/detail/common.hpp>
|
||||||
# if BOOST_WORKAROUND(BOOST_MSVC, < 1310)
|
# if BOOST_WORKAROUND(BOOST_MSVC, < 1310)
|
||||||
# include <boost/range/detail/remove_extent.hpp>
|
# include <boost/range/detail/remove_extent.hpp>
|
||||||
@ -40,7 +39,7 @@ namespace boost
|
|||||||
struct range_end<std_container_>
|
struct range_end<std_container_>
|
||||||
{
|
{
|
||||||
template< typename C >
|
template< typename C >
|
||||||
static BOOST_RANGE_DEDUCED_TYPENAME range_result_iterator<C>::type
|
static BOOST_RANGE_DEDUCED_TYPENAME range_iterator<C>::type
|
||||||
fun( C& c )
|
fun( C& c )
|
||||||
{
|
{
|
||||||
return c.end();
|
return c.end();
|
||||||
@ -55,7 +54,7 @@ namespace boost
|
|||||||
struct range_end<std_pair_>
|
struct range_end<std_pair_>
|
||||||
{
|
{
|
||||||
template< typename P >
|
template< typename P >
|
||||||
static BOOST_RANGE_DEDUCED_TYPENAME range_result_iterator<P>::type
|
static BOOST_RANGE_DEDUCED_TYPENAME range_iterator<P>::type
|
||||||
fun( const P& p )
|
fun( const P& p )
|
||||||
{
|
{
|
||||||
return p.second;
|
return p.second;
|
||||||
@ -84,72 +83,10 @@ namespace boost
|
|||||||
#endif
|
#endif
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
template<>
|
|
||||||
struct range_end<char_array_>
|
|
||||||
{
|
|
||||||
template< typename T, std::size_t sz >
|
|
||||||
static T* fun( T BOOST_RANGE_ARRAY_REF()[sz] )
|
|
||||||
{
|
|
||||||
return boost::range_detail::array_end( boost_range_array );
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
template<>
|
|
||||||
struct range_end<wchar_t_array_>
|
|
||||||
{
|
|
||||||
template< typename T, std::size_t sz >
|
|
||||||
static T* fun( T BOOST_RANGE_ARRAY_REF()[sz] )
|
|
||||||
{
|
|
||||||
return boost::range_detail::array_end( boost_range_array );
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
//////////////////////////////////////////////////////////////////////
|
|
||||||
// string
|
|
||||||
//////////////////////////////////////////////////////////////////////
|
|
||||||
|
|
||||||
template<>
|
|
||||||
struct range_end<char_ptr_>
|
|
||||||
{
|
|
||||||
static char* fun( char* s )
|
|
||||||
{
|
|
||||||
return boost::range_detail::str_end( s );
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
template<>
|
|
||||||
struct range_end<const_char_ptr_>
|
|
||||||
{
|
|
||||||
static const char* fun( const char* s )
|
|
||||||
{
|
|
||||||
return boost::range_detail::str_end( s );
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
template<>
|
|
||||||
struct range_end<wchar_t_ptr_>
|
|
||||||
{
|
|
||||||
static wchar_t* fun( wchar_t* s )
|
|
||||||
{
|
|
||||||
return boost::range_detail::str_end( s );
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
|
|
||||||
template<>
|
|
||||||
struct range_end<const_wchar_t_ptr_>
|
|
||||||
{
|
|
||||||
static const wchar_t* fun( const wchar_t* s )
|
|
||||||
{
|
|
||||||
return boost::range_detail::str_end( s );
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
} // namespace 'range_detail'
|
} // namespace 'range_detail'
|
||||||
|
|
||||||
template< typename C >
|
template< typename C >
|
||||||
inline BOOST_RANGE_DEDUCED_TYPENAME range_result_iterator<C>::type
|
inline BOOST_RANGE_DEDUCED_TYPENAME range_iterator<C>::type
|
||||||
end( C& c )
|
end( C& c )
|
||||||
{
|
{
|
||||||
return range_detail::range_end< BOOST_RANGE_DEDUCED_TYPENAME range_detail::range<C>::type >::fun( c );
|
return range_detail::range_end< BOOST_RANGE_DEDUCED_TYPENAME range_detail::range<C>::type >::fun( c );
|
||||||
|
@ -57,48 +57,16 @@ namespace boost
|
|||||||
return const_cast<Char*>( str_end( s, s ) );
|
return const_cast<Char*>( str_end( s, s ) );
|
||||||
}
|
}
|
||||||
|
|
||||||
template< class T, std::size_t sz >
|
|
||||||
inline T* array_end( T BOOST_RANGE_ARRAY_REF()[sz], int )
|
|
||||||
{
|
|
||||||
return boost_range_array + sz;
|
|
||||||
}
|
|
||||||
|
|
||||||
template< class T, std::size_t sz >
|
|
||||||
inline const T* array_end( const T BOOST_RANGE_ARRAY_REF()[sz], int )
|
|
||||||
{
|
|
||||||
return boost_range_array + sz;
|
|
||||||
}
|
|
||||||
|
|
||||||
template< class T, std::size_t sz >
|
|
||||||
inline T* array_end( T BOOST_RANGE_ARRAY_REF()[sz], char_or_wchar_t_array_tag )
|
|
||||||
{
|
|
||||||
return boost_range_array + sz - 1;
|
|
||||||
}
|
|
||||||
|
|
||||||
template< class T, std::size_t sz >
|
|
||||||
inline const T* array_end( const T BOOST_RANGE_ARRAY_REF()[sz], char_or_wchar_t_array_tag )
|
|
||||||
{
|
|
||||||
return boost_range_array + sz - 1;
|
|
||||||
}
|
|
||||||
|
|
||||||
template< class T, std::size_t sz >
|
template< class T, std::size_t sz >
|
||||||
inline T* array_end( T BOOST_RANGE_ARRAY_REF()[sz] )
|
inline T* array_end( T BOOST_RANGE_ARRAY_REF()[sz] )
|
||||||
{
|
{
|
||||||
typedef BOOST_RANGE_DEDUCED_TYPENAME boost::mpl::if_c< is_same<char,T>::value || is_same<wchar_t,T>::value,
|
return boost_range_array + sz;
|
||||||
char_or_wchar_t_array_tag,
|
|
||||||
int >::type tag;
|
|
||||||
|
|
||||||
return array_end<T,sz>( boost_range_array, tag() );
|
|
||||||
}
|
}
|
||||||
|
|
||||||
template< class T, std::size_t sz >
|
template< class T, std::size_t sz >
|
||||||
inline const T* array_end( const T BOOST_RANGE_ARRAY_REF()[sz] )
|
inline const T* array_end( const T BOOST_RANGE_ARRAY_REF()[sz] )
|
||||||
{
|
{
|
||||||
typedef BOOST_RANGE_DEDUCED_TYPENAME boost::mpl::if_c< is_same<char,T>::value || is_same<wchar_t,T>::value,
|
return boost_range_array + sz;
|
||||||
char_or_wchar_t_array_tag,
|
|
||||||
int >::type tag;
|
|
||||||
|
|
||||||
return array_end<T,sz>( boost_range_array, tag() );
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/////////////////////////////////////////////////////////////////////
|
/////////////////////////////////////////////////////////////////////
|
||||||
@ -111,47 +79,16 @@ namespace boost
|
|||||||
return str_end( s ) - s;
|
return str_end( s ) - s;
|
||||||
}
|
}
|
||||||
|
|
||||||
template< class T, std::size_t sz >
|
|
||||||
inline std::size_t array_size( T BOOST_RANGE_ARRAY_REF()[sz], int )
|
|
||||||
{
|
|
||||||
return sz;
|
|
||||||
}
|
|
||||||
|
|
||||||
template< class T, std::size_t sz >
|
|
||||||
inline std::size_t array_size( const T BOOST_RANGE_ARRAY_REF()[sz], int )
|
|
||||||
{
|
|
||||||
return sz;
|
|
||||||
}
|
|
||||||
|
|
||||||
template< class T, std::size_t sz >
|
|
||||||
inline std::size_t array_size( T BOOST_RANGE_ARRAY_REF()[sz], char_or_wchar_t_array_tag )
|
|
||||||
{
|
|
||||||
return sz - 1;
|
|
||||||
}
|
|
||||||
|
|
||||||
template< class T, std::size_t sz >
|
|
||||||
inline std::size_t array_size( const T BOOST_RANGE_ARRAY_REF()[sz], char_or_wchar_t_array_tag )
|
|
||||||
{
|
|
||||||
return sz - 1;
|
|
||||||
}
|
|
||||||
|
|
||||||
template< class T, std::size_t sz >
|
template< class T, std::size_t sz >
|
||||||
inline std::size_t array_size( T BOOST_RANGE_ARRAY_REF()[sz] )
|
inline std::size_t array_size( T BOOST_RANGE_ARRAY_REF()[sz] )
|
||||||
{
|
{
|
||||||
typedef BOOST_RANGE_DEDUCED_TYPENAME boost::mpl::if_c< is_same<const char,T>::value || is_same<const wchar_t,T>::value ||
|
return sz;
|
||||||
is_same<char,T>::value || is_same<wchar_t,T>::value,
|
|
||||||
char_or_wchar_t_array_tag,
|
|
||||||
int >::type tag;
|
|
||||||
return array_size<T,sz>( boost_range_array, tag() );
|
|
||||||
}
|
}
|
||||||
|
|
||||||
template< class T, std::size_t sz >
|
template< class T, std::size_t sz >
|
||||||
inline std::size_t array_size( const T BOOST_RANGE_ARRAY_REF()[sz] )
|
inline std::size_t array_size( const T BOOST_RANGE_ARRAY_REF()[sz] )
|
||||||
{
|
{
|
||||||
typedef BOOST_RANGE_DEDUCED_TYPENAME boost::mpl::if_c< is_same<char,T>::value || is_same<wchar_t,T>::value,
|
return sz;
|
||||||
char_or_wchar_t_array_tag,
|
|
||||||
int >::type tag;
|
|
||||||
return array_size<T,sz>( boost_range_array, tag() );
|
|
||||||
}
|
}
|
||||||
|
|
||||||
} // namespace 'range_detail'
|
} // namespace 'range_detail'
|
||||||
|
@ -64,60 +64,10 @@ namespace boost
|
|||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
template<>
|
|
||||||
struct range_iterator_<char_array_>
|
|
||||||
{
|
|
||||||
template< typename T >
|
|
||||||
struct pts
|
|
||||||
{
|
|
||||||
typedef BOOST_RANGE_DEDUCED_TYPENAME
|
|
||||||
remove_extent<T>::type* type;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
template<>
|
|
||||||
struct range_iterator_<char_ptr_>
|
|
||||||
{
|
|
||||||
template< typename S >
|
|
||||||
struct pts
|
|
||||||
{
|
|
||||||
typedef char* type;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
template<>
|
|
||||||
struct range_iterator_<const_char_ptr_>
|
|
||||||
{
|
|
||||||
template< typename S >
|
|
||||||
struct pts
|
|
||||||
{
|
|
||||||
typedef const char* type;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
template<>
|
|
||||||
struct range_iterator_<wchar_t_ptr_>
|
|
||||||
{
|
|
||||||
template< typename S >
|
|
||||||
struct pts
|
|
||||||
{
|
|
||||||
typedef wchar_t* type;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
template<>
|
|
||||||
struct range_iterator_<const_wchar_t_ptr_>
|
|
||||||
{
|
|
||||||
template< typename S >
|
|
||||||
struct pts
|
|
||||||
{
|
|
||||||
typedef const wchar_t* type;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
}
|
}
|
||||||
|
|
||||||
template< typename C >
|
template< typename C >
|
||||||
class range_iterator
|
class range_mutable_iterator
|
||||||
{
|
{
|
||||||
typedef BOOST_RANGE_DEDUCED_TYPENAME range_detail::range<C>::type c_type;
|
typedef BOOST_RANGE_DEDUCED_TYPENAME range_detail::range<C>::type c_type;
|
||||||
public:
|
public:
|
||||||
|
@ -1,97 +0,0 @@
|
|||||||
// Boost.Range library
|
|
||||||
//
|
|
||||||
// Copyright Thorsten Ottosen 2003-2004. Use, modification and
|
|
||||||
// distribution is subject to the Boost Software License, Version
|
|
||||||
// 1.0. (See accompanying file LICENSE_1_0.txt or copy at
|
|
||||||
// http://www.boost.org/LICENSE_1_0.txt)
|
|
||||||
//
|
|
||||||
// For more information, see http://www.boost.org/libs/range/
|
|
||||||
//
|
|
||||||
|
|
||||||
#if !defined( BOOST_RANGE_DETAIL_MFC_CARRAY_HPP ) && defined( BOOST_RANGE_ENABLE_MCF_CARRAY )
|
|
||||||
#define BOOST_RANGE_DETAIL_MFC_CARRAY_HPP
|
|
||||||
|
|
||||||
#if defined(_MSC_VER) && (_MSC_VER >= 1200)
|
|
||||||
# pragma once
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#include <afxtempl.h> // for CArray
|
|
||||||
#include <boost/range/config.hpp>
|
|
||||||
#include <boost/range/metafunctions.hpp>
|
|
||||||
|
|
||||||
namespace boost
|
|
||||||
{
|
|
||||||
template< class T, class U >
|
|
||||||
struct range_iterator< CArray<T,U> >
|
|
||||||
{
|
|
||||||
typedef T* type;
|
|
||||||
};
|
|
||||||
|
|
||||||
//
|
|
||||||
// Why is this needed?!?
|
|
||||||
//
|
|
||||||
template< class T, class U >
|
|
||||||
struct range_iterator< const CArray<T,U> >
|
|
||||||
{
|
|
||||||
typedef T* type;
|
|
||||||
};
|
|
||||||
|
|
||||||
template< class T, class U >
|
|
||||||
struct range_const_iterator< CArray<T,U> >
|
|
||||||
{
|
|
||||||
typedef const T* type;
|
|
||||||
};
|
|
||||||
|
|
||||||
template< class T, class U >
|
|
||||||
struct range_difference< CArray<T,U> >
|
|
||||||
{
|
|
||||||
typedef std::ptrdiff_t type;
|
|
||||||
};
|
|
||||||
|
|
||||||
template< class T, class U >
|
|
||||||
struct range_size< CArray<T,U> >
|
|
||||||
{
|
|
||||||
typedef int type;
|
|
||||||
};
|
|
||||||
|
|
||||||
template< class T, class U >
|
|
||||||
struct range_value< CArray<T,U> >
|
|
||||||
{
|
|
||||||
typedef T type;
|
|
||||||
};
|
|
||||||
|
|
||||||
template< class T, class U >
|
|
||||||
T* boost_range_begin( CArray<T,U>& r )
|
|
||||||
{
|
|
||||||
return r.GetData();
|
|
||||||
}
|
|
||||||
|
|
||||||
template< class T, class U >
|
|
||||||
const T* boost_range_begin( const CArray<T,U>& r )
|
|
||||||
{
|
|
||||||
return r.GetData();
|
|
||||||
}
|
|
||||||
|
|
||||||
template< class T, class U >
|
|
||||||
int boost_range_size( const CArray<T,U>& r )
|
|
||||||
{
|
|
||||||
return r.GetSize();
|
|
||||||
}
|
|
||||||
|
|
||||||
template< class T, class U >
|
|
||||||
T* boost_range_end( CArray<T,U>& r )
|
|
||||||
{
|
|
||||||
return boost_range_begin( r ) + boost_range_size( r );
|
|
||||||
}
|
|
||||||
|
|
||||||
template< class T, class U >
|
|
||||||
const T* boost_range_end( const CArray<T,U>& r )
|
|
||||||
{
|
|
||||||
return boost_range_begin( r ) + boost_range_size( r );
|
|
||||||
}
|
|
||||||
|
|
||||||
// default 'empty()' ok
|
|
||||||
|
|
||||||
} // namespace 'boost'
|
|
||||||
|
|
||||||
#endif
|
|
@ -1,92 +0,0 @@
|
|||||||
// Boost.Range library
|
|
||||||
//
|
|
||||||
// Copyright Thorsten Ottosen 2003-2004. Use, modification and
|
|
||||||
// distribution is subject to the Boost Software License, Version
|
|
||||||
// 1.0. (See accompanying file LICENSE_1_0.txt or copy at
|
|
||||||
// http://www.boost.org/LICENSE_1_0.txt)
|
|
||||||
//
|
|
||||||
// For more information, see http://www.boost.org/libs/range/
|
|
||||||
//
|
|
||||||
|
|
||||||
#if !defined(BOOST_RANGE_DETAIL_MFC_CSTRING_HPP) && defined(BOOST_RANGE_ENABLE_MFC)
|
|
||||||
#define BOOST_RANGE_DETAIL_MFC_CSTRING_HPP
|
|
||||||
|
|
||||||
#if defined(_MSC_VER) && (_MSC_VER >= 1200)
|
|
||||||
# pragma once
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#include <afx.h> // for CString
|
|
||||||
#include <boost/range/config.hpp>
|
|
||||||
#include <boost/range/metafunctions.hpp>
|
|
||||||
|
|
||||||
namespace boost
|
|
||||||
{
|
|
||||||
template<>
|
|
||||||
struct range_iterator< CString >
|
|
||||||
{
|
|
||||||
typedef TCHAR* type;
|
|
||||||
};
|
|
||||||
|
|
||||||
//
|
|
||||||
// Why is this needed?!?
|
|
||||||
//
|
|
||||||
template<>
|
|
||||||
struct range_iterator< const CString >
|
|
||||||
{
|
|
||||||
typedef TCHAR* type;
|
|
||||||
};
|
|
||||||
|
|
||||||
template<>
|
|
||||||
struct range_const_iterator< CString >
|
|
||||||
{
|
|
||||||
typedef const TCHAR* type;
|
|
||||||
};
|
|
||||||
|
|
||||||
template<>
|
|
||||||
struct range_difference< CString >
|
|
||||||
{
|
|
||||||
typedef std::ptrdiff_t type;
|
|
||||||
};
|
|
||||||
|
|
||||||
template<>
|
|
||||||
struct range_size< CString >
|
|
||||||
{
|
|
||||||
typedef int type;
|
|
||||||
};
|
|
||||||
|
|
||||||
template<>
|
|
||||||
struct range_value< CString >
|
|
||||||
{
|
|
||||||
typedef TCHAR type;
|
|
||||||
};
|
|
||||||
|
|
||||||
TCHAR* boost_range_begin( CString& r )
|
|
||||||
{
|
|
||||||
return r.GetBuffer(0);
|
|
||||||
}
|
|
||||||
|
|
||||||
const TCHAR* boost_range_begin( const CString& r )
|
|
||||||
{
|
|
||||||
return (LPCTSTR)r;
|
|
||||||
}
|
|
||||||
|
|
||||||
int boost_range_size( const CString& r )
|
|
||||||
{
|
|
||||||
return r.GetLength();
|
|
||||||
}
|
|
||||||
|
|
||||||
TCHAR* boost_range_end( CString& r )
|
|
||||||
{
|
|
||||||
return boost_range_begin( r ) + boost_range_size( r );
|
|
||||||
}
|
|
||||||
|
|
||||||
const TCHAR* range_adl_end( const CString& r )
|
|
||||||
{
|
|
||||||
return boost_range_begin( r ) + boost_range_size( r );
|
|
||||||
}
|
|
||||||
|
|
||||||
// default 'empty()' ok
|
|
||||||
|
|
||||||
} // namespace 'boost'
|
|
||||||
|
|
||||||
#endif
|
|
931
include/boost/range/detail/microsoft.hpp
Normal file
931
include/boost/range/detail/microsoft.hpp
Normal file
@ -0,0 +1,931 @@
|
|||||||
|
#ifndef BOOST_RANGE_DETAIL_MICROSOFT_HPP
|
||||||
|
#define BOOST_RANGE_DETAIL_MICROSOFT_HPP
|
||||||
|
|
||||||
|
// Boost.Range MFC/ATL Extension
|
||||||
|
//
|
||||||
|
// Copyright Shunsuke Sogame 2005-2006.
|
||||||
|
// Distributed under the Boost Software License, Version 1.0.
|
||||||
|
// (See accompanying file LICENSE_1_0.txt or copy at
|
||||||
|
// http://www.boost.org/LICENSE_1_0.txt)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
// config
|
||||||
|
//
|
||||||
|
|
||||||
|
|
||||||
|
#include <boost/range/iterator.hpp>
|
||||||
|
|
||||||
|
|
||||||
|
#define BOOST_RANGE_DETAIL_MICROSOFT_RANGE_VERSION_1 1
|
||||||
|
|
||||||
|
|
||||||
|
#if !defined(BOOST_RANGE_DETAIL_MICROSOFT_RANGE_VERSION_1)
|
||||||
|
#define BOOST_RANGE_DETAIL_MICROSOFT_range_mutable_iterator range_mutable_iterator
|
||||||
|
#define BOOST_RANGE_DETAIL_MICROSOFT_range_begin range_begin
|
||||||
|
#define BOOST_RANGE_DETAIL_MICROSOFT_range_end range_end
|
||||||
|
#else
|
||||||
|
#define BOOST_RANGE_DETAIL_MICROSOFT_range_mutable_iterator range_mutable_iterator
|
||||||
|
#define BOOST_RANGE_DETAIL_MICROSOFT_range_begin range_begin
|
||||||
|
#define BOOST_RANGE_DETAIL_MICROSOFT_range_end range_end
|
||||||
|
#endif
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
// yet another customization way
|
||||||
|
//
|
||||||
|
|
||||||
|
|
||||||
|
#include <boost/iterator/iterator_traits.hpp> // iterator_difference
|
||||||
|
#include <boost/mpl/identity.hpp>
|
||||||
|
#include <boost/mpl/if.hpp>
|
||||||
|
#include <boost/preprocessor/cat.hpp>
|
||||||
|
#include <boost/preprocessor/control/iif.hpp>
|
||||||
|
#include <boost/preprocessor/comma_if.hpp>
|
||||||
|
#include <boost/preprocessor/detail/is_unary.hpp>
|
||||||
|
#include <boost/preprocessor/list/for_each.hpp>
|
||||||
|
#include <boost/preprocessor/repetition/enum_params.hpp>
|
||||||
|
#include <boost/preprocessor/repetition/repeat.hpp>
|
||||||
|
#include <boost/preprocessor/seq/for_each_i.hpp>
|
||||||
|
#include <boost/preprocessor/seq/size.hpp>
|
||||||
|
#include <boost/preprocessor/tuple/eat.hpp>
|
||||||
|
#include <boost/range/const_iterator.hpp>
|
||||||
|
#include <boost/range/size_type.hpp>
|
||||||
|
#include <boost/type_traits/is_const.hpp>
|
||||||
|
#include <boost/type_traits/is_same.hpp>
|
||||||
|
#include <boost/type_traits/remove_cv.hpp>
|
||||||
|
#include <boost/utility/addressof.hpp>
|
||||||
|
#include <boost/utility/enable_if.hpp> // disable_if
|
||||||
|
|
||||||
|
#if !defined(BOOST_RANGE_DETAIL_MICROSOFT_RANGE_VERSION_1)
|
||||||
|
#include <boost/range/mutable_iterator.hpp>
|
||||||
|
#else
|
||||||
|
#include <iterator> // distance
|
||||||
|
#include <boost/range/begin.hpp>
|
||||||
|
#include <boost/range/end.hpp>
|
||||||
|
#include <boost/range/iterator.hpp>
|
||||||
|
#endif
|
||||||
|
|
||||||
|
|
||||||
|
namespace boost { namespace range_detail_microsoft {
|
||||||
|
|
||||||
|
|
||||||
|
// customization point
|
||||||
|
//
|
||||||
|
|
||||||
|
template< class Tag >
|
||||||
|
struct customization;
|
||||||
|
|
||||||
|
|
||||||
|
template< class T >
|
||||||
|
struct customization_tag;
|
||||||
|
|
||||||
|
|
||||||
|
struct using_type_as_tag
|
||||||
|
{ };
|
||||||
|
|
||||||
|
|
||||||
|
// Topic:
|
||||||
|
// In fact, it is unnecessary for VC++.
|
||||||
|
// VC++'s behavior seems conforming, while GCC fails without this.
|
||||||
|
template< class Iterator, class T >
|
||||||
|
struct mutable_ :
|
||||||
|
disable_if< is_const<T>, Iterator >
|
||||||
|
{ };
|
||||||
|
|
||||||
|
|
||||||
|
// helpers
|
||||||
|
//
|
||||||
|
|
||||||
|
template< class Tag, class T >
|
||||||
|
struct customization_tag_of
|
||||||
|
{
|
||||||
|
typedef typename mpl::if_< is_same<using_type_as_tag, Tag>,
|
||||||
|
T,
|
||||||
|
Tag
|
||||||
|
>::type type;
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
template< class T >
|
||||||
|
struct customization_of
|
||||||
|
{
|
||||||
|
typedef typename remove_cv<T>::type bare_t;
|
||||||
|
typedef typename customization_tag<bare_t>::type tag_t;
|
||||||
|
typedef customization<tag_t> type;
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
template< class T >
|
||||||
|
struct mutable_iterator_of
|
||||||
|
{
|
||||||
|
typedef typename remove_cv<T>::type bare_t;
|
||||||
|
typedef typename customization_of<bare_t>::type cust_t;
|
||||||
|
typedef typename cust_t::template meta<bare_t>::mutable_iterator type;
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
template< class T >
|
||||||
|
struct const_iterator_of
|
||||||
|
{
|
||||||
|
typedef typename remove_cv<T>::type bare_t;
|
||||||
|
typedef typename customization_of<bare_t>::type cust_t;
|
||||||
|
typedef typename cust_t::template meta<bare_t>::const_iterator type;
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
template< class T >
|
||||||
|
struct size_type_of
|
||||||
|
{
|
||||||
|
typedef typename range_detail_microsoft::mutable_iterator_of<T>::type miter_t;
|
||||||
|
typedef typename iterator_difference<miter_t>::type type;
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
template< class T > inline
|
||||||
|
typename mutable_iterator_of<T>::type
|
||||||
|
begin_of(T& x)
|
||||||
|
{
|
||||||
|
typedef typename customization_of<T>::type cust_t;
|
||||||
|
return cust_t().template begin<typename mutable_iterator_of<T>::type>(x);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
template< class T > inline
|
||||||
|
typename const_iterator_of<T>::type
|
||||||
|
begin_of(T const& x)
|
||||||
|
{
|
||||||
|
typedef typename customization_of<T>::type cust_t;
|
||||||
|
return cust_t().template begin<typename const_iterator_of<T>::type>(x);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
template< class T > inline
|
||||||
|
typename mutable_iterator_of<T>::type
|
||||||
|
end_of(T& x)
|
||||||
|
{
|
||||||
|
typedef typename customization_of<T>::type cust_t;
|
||||||
|
return cust_t().template end<typename mutable_iterator_of<T>::type>(x);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
template< class T > inline
|
||||||
|
typename const_iterator_of<T>::type
|
||||||
|
end_of(T const& x)
|
||||||
|
{
|
||||||
|
typedef typename customization_of<T>::type cust_t;
|
||||||
|
return cust_t().template end<typename const_iterator_of<T>::type>(x);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
#if defined(BOOST_RANGE_DETAIL_MICROSOFT_RANGE_VERSION_1)
|
||||||
|
|
||||||
|
template< class T > inline
|
||||||
|
typename size_type_of<T>::type
|
||||||
|
size_of(T const& x)
|
||||||
|
{
|
||||||
|
return std::distance(boost::begin(x), boost::end(x));
|
||||||
|
}
|
||||||
|
|
||||||
|
#endif
|
||||||
|
|
||||||
|
|
||||||
|
template< class Range >
|
||||||
|
struct compatible_mutable_iterator :
|
||||||
|
BOOST_RANGE_DETAIL_MICROSOFT_range_mutable_iterator<Range>
|
||||||
|
{ };
|
||||||
|
|
||||||
|
|
||||||
|
} } // namespace boost::range_detail_microsoft
|
||||||
|
|
||||||
|
|
||||||
|
#define BOOST_RANGE_DETAIL_MICROSOFT_CUSTOMIZATION_namespace_open(NamespaceList) \
|
||||||
|
BOOST_PP_LIST_FOR_EACH(BOOST_RANGE_DETAIL_MICROSOFT_CUSTOMIZATION_namespace_open_op, ~, NamespaceList) \
|
||||||
|
/**/
|
||||||
|
|
||||||
|
#define BOOST_RANGE_DETAIL_MICROSOFT_CUSTOMIZATION_namespace_open_op(r, data, elem) \
|
||||||
|
namespace elem { \
|
||||||
|
/**/
|
||||||
|
|
||||||
|
|
||||||
|
#define BOOST_RANGE_DETAIL_MICROSOFT_CUSTOMIZATION_namespace_close(NamespaceList) \
|
||||||
|
BOOST_PP_LIST_FOR_EACH(BOOST_RANGE_DETAIL_MICROSOFT_CUSTOMIZATION_namespace_close_op, ~, NamespaceList) \
|
||||||
|
/**/
|
||||||
|
|
||||||
|
#define BOOST_RANGE_DETAIL_MICROSOFT_CUSTOMIZATION_namespace_close_op(r, data, elem) \
|
||||||
|
} \
|
||||||
|
/**/
|
||||||
|
|
||||||
|
|
||||||
|
#define BOOST_RANGE_DETAIL_MICROSOFT_CUSTOMIZATION_namespace_expand_op(r, data, elem) \
|
||||||
|
:: elem \
|
||||||
|
/**/
|
||||||
|
|
||||||
|
|
||||||
|
#define BOOST_RANGE_DETAIL_MICROSOFT_CUSTOMIZATION_TYPE(Tag, NamespaceList, Name) \
|
||||||
|
namespace boost { namespace range_detail_microsoft { \
|
||||||
|
BOOST_RANGE_DETAIL_MICROSOFT_CUSTOMIZATION_TYPE_tag(Tag, BOOST_RANGE_DETAIL_MICROSOFT_CUSTOMIZATION_TYPE_fullname(NamespaceList, Name)) \
|
||||||
|
} } \
|
||||||
|
\
|
||||||
|
namespace boost { \
|
||||||
|
BOOST_RANGE_DETAIL_MICROSOFT_CUSTOMIZATION_TYPE_mutable_iterator(BOOST_RANGE_DETAIL_MICROSOFT_CUSTOMIZATION_TYPE_fullname(NamespaceList, Name)) \
|
||||||
|
BOOST_RANGE_DETAIL_MICROSOFT_CUSTOMIZATION_TYPE_const_iterator(BOOST_RANGE_DETAIL_MICROSOFT_CUSTOMIZATION_TYPE_fullname(NamespaceList, Name)) \
|
||||||
|
BOOST_RANGE_DETAIL_MICROSOFT_CUSTOMIZATION_TYPE_size_type(BOOST_RANGE_DETAIL_MICROSOFT_CUSTOMIZATION_TYPE_fullname(NamespaceList, Name)) \
|
||||||
|
} \
|
||||||
|
\
|
||||||
|
BOOST_RANGE_DETAIL_MICROSOFT_CUSTOMIZATION_namespace_open(NamespaceList) \
|
||||||
|
BOOST_RANGE_DETAIL_MICROSOFT_CUSTOMIZATION_TYPE_begin(BOOST_RANGE_DETAIL_MICROSOFT_CUSTOMIZATION_TYPE_fullname(NamespaceList, Name)) \
|
||||||
|
BOOST_RANGE_DETAIL_MICROSOFT_CUSTOMIZATION_TYPE_begin_const(BOOST_RANGE_DETAIL_MICROSOFT_CUSTOMIZATION_TYPE_fullname(NamespaceList, Name)) \
|
||||||
|
BOOST_RANGE_DETAIL_MICROSOFT_CUSTOMIZATION_TYPE_end(BOOST_RANGE_DETAIL_MICROSOFT_CUSTOMIZATION_TYPE_fullname(NamespaceList, Name)) \
|
||||||
|
BOOST_RANGE_DETAIL_MICROSOFT_CUSTOMIZATION_TYPE_end_const(BOOST_RANGE_DETAIL_MICROSOFT_CUSTOMIZATION_TYPE_fullname(NamespaceList, Name)) \
|
||||||
|
BOOST_RANGE_DETAIL_MICROSOFT_CUSTOMIZATION_TYPE_size(BOOST_RANGE_DETAIL_MICROSOFT_CUSTOMIZATION_TYPE_fullname(NamespaceList, Name)) \
|
||||||
|
BOOST_RANGE_DETAIL_MICROSOFT_CUSTOMIZATION_namespace_close(NamespaceList) \
|
||||||
|
/**/
|
||||||
|
|
||||||
|
|
||||||
|
#define BOOST_RANGE_DETAIL_MICROSOFT_CUSTOMIZATION_TYPE_fullname(NamespaceList, Name) \
|
||||||
|
BOOST_PP_LIST_FOR_EACH(BOOST_RANGE_DETAIL_MICROSOFT_CUSTOMIZATION_namespace_expand_op, ~, NamespaceList) :: Name \
|
||||||
|
/**/
|
||||||
|
|
||||||
|
|
||||||
|
#define BOOST_RANGE_DETAIL_MICROSOFT_CUSTOMIZATION_TYPE_tag(Tag, Fullname) \
|
||||||
|
template< > \
|
||||||
|
struct customization_tag< Fullname > : \
|
||||||
|
customization_tag_of< Tag, Fullname > \
|
||||||
|
{ }; \
|
||||||
|
/**/
|
||||||
|
|
||||||
|
|
||||||
|
// metafunctions
|
||||||
|
//
|
||||||
|
|
||||||
|
#define BOOST_RANGE_DETAIL_MICROSOFT_CUSTOMIZATION_TYPE_mutable_iterator(Fullname) \
|
||||||
|
template< > \
|
||||||
|
struct BOOST_RANGE_DETAIL_MICROSOFT_range_mutable_iterator< Fullname > : \
|
||||||
|
range_detail_microsoft::mutable_iterator_of< Fullname > \
|
||||||
|
{ }; \
|
||||||
|
/**/
|
||||||
|
|
||||||
|
|
||||||
|
#define BOOST_RANGE_DETAIL_MICROSOFT_CUSTOMIZATION_TYPE_const_iterator(Fullname) \
|
||||||
|
template< > \
|
||||||
|
struct range_const_iterator< Fullname > : \
|
||||||
|
range_detail_microsoft::const_iterator_of< Fullname > \
|
||||||
|
{ }; \
|
||||||
|
/**/
|
||||||
|
|
||||||
|
|
||||||
|
#define BOOST_RANGE_DETAIL_MICROSOFT_CUSTOMIZATION_TYPE_size_type(Fullname) \
|
||||||
|
template< > \
|
||||||
|
struct range_size< Fullname > : \
|
||||||
|
range_detail_microsoft::size_type_of< Fullname > \
|
||||||
|
{ }; \
|
||||||
|
/**/
|
||||||
|
|
||||||
|
|
||||||
|
// functions
|
||||||
|
//
|
||||||
|
|
||||||
|
#define BOOST_RANGE_DETAIL_MICROSOFT_CUSTOMIZATION_TYPE_begin(Fullname) \
|
||||||
|
inline \
|
||||||
|
boost::range_detail_microsoft::mutable_iterator_of< Fullname >::type \
|
||||||
|
BOOST_RANGE_DETAIL_MICROSOFT_range_begin(Fullname& x) \
|
||||||
|
{ \
|
||||||
|
return boost::range_detail_microsoft::begin_of(x); \
|
||||||
|
} \
|
||||||
|
/**/
|
||||||
|
|
||||||
|
|
||||||
|
#define BOOST_RANGE_DETAIL_MICROSOFT_CUSTOMIZATION_TYPE_begin_const(Fullname) \
|
||||||
|
inline \
|
||||||
|
boost::range_detail_microsoft::const_iterator_of< Fullname >::type \
|
||||||
|
BOOST_RANGE_DETAIL_MICROSOFT_range_begin(Fullname const& x) \
|
||||||
|
{ \
|
||||||
|
return boost::range_detail_microsoft::begin_of(x); \
|
||||||
|
} \
|
||||||
|
/**/
|
||||||
|
|
||||||
|
|
||||||
|
#define BOOST_RANGE_DETAIL_MICROSOFT_CUSTOMIZATION_TYPE_end(Fullname) \
|
||||||
|
inline \
|
||||||
|
boost::range_detail_microsoft::mutable_iterator_of< Fullname >::type \
|
||||||
|
BOOST_RANGE_DETAIL_MICROSOFT_range_end(Fullname& x) \
|
||||||
|
{ \
|
||||||
|
return boost::range_detail_microsoft::end_of(x); \
|
||||||
|
} \
|
||||||
|
/**/
|
||||||
|
|
||||||
|
|
||||||
|
#define BOOST_RANGE_DETAIL_MICROSOFT_CUSTOMIZATION_TYPE_end_const(Fullname) \
|
||||||
|
inline \
|
||||||
|
boost::range_detail_microsoft::const_iterator_of< Fullname >::type \
|
||||||
|
BOOST_RANGE_DETAIL_MICROSOFT_range_end(Fullname const& x) \
|
||||||
|
{ \
|
||||||
|
return boost::range_detail_microsoft::end_of(x); \
|
||||||
|
} \
|
||||||
|
/**/
|
||||||
|
|
||||||
|
|
||||||
|
#if !defined(BOOST_RANGE_DETAIL_MICROSOFT_RANGE_VERSION_1)
|
||||||
|
|
||||||
|
#define BOOST_RANGE_DETAIL_MICROSOFT_CUSTOMIZATION_TYPE_size(Fullname) \
|
||||||
|
/**/
|
||||||
|
|
||||||
|
#else
|
||||||
|
|
||||||
|
#define BOOST_RANGE_DETAIL_MICROSOFT_CUSTOMIZATION_TYPE_size(Fullname) \
|
||||||
|
inline \
|
||||||
|
boost::range_detail_microsoft::size_type_of< Fullname >::type \
|
||||||
|
boost_range_size(Fullname const& x) \
|
||||||
|
{ \
|
||||||
|
return boost::range_detail_microsoft::size_of(x); \
|
||||||
|
} \
|
||||||
|
/**/
|
||||||
|
|
||||||
|
#endif
|
||||||
|
|
||||||
|
|
||||||
|
#define BOOST_RANGE_DETAIL_MICROSOFT_CUSTOMIZATION_TEMPLATE(Tag, NamespaceList, Name, ParamSeqOrCount) \
|
||||||
|
BOOST_RANGE_DETAIL_MICROSOFT_CUSTOMIZATION_TEMPLATE_impl( \
|
||||||
|
Tag, NamespaceList, Name, \
|
||||||
|
BOOST_RANGE_DETAIL_MICROSOFT_CUSTOMIZATION_TEMPLATE_to_param_seq(ParamSeqOrCount) \
|
||||||
|
) \
|
||||||
|
/**/
|
||||||
|
|
||||||
|
#define BOOST_RANGE_DETAIL_MICROSOFT_CUSTOMIZATION_TEMPLATE_to_param_seq(ParamSeqOrCount) \
|
||||||
|
BOOST_PP_IIF(BOOST_PP_IS_UNARY(ParamSeqOrCount), \
|
||||||
|
ParamSeqOrCount BOOST_PP_TUPLE_EAT(3), \
|
||||||
|
BOOST_PP_REPEAT \
|
||||||
|
)(ParamSeqOrCount, BOOST_RANGE_DETAIL_MICROSOFT_CUSTOMIZATION_TEMPLATE_to_param_seq_op, ~) \
|
||||||
|
/**/
|
||||||
|
|
||||||
|
#define BOOST_RANGE_DETAIL_MICROSOFT_CUSTOMIZATION_TEMPLATE_to_param_seq_op(z, n, _) \
|
||||||
|
(class) \
|
||||||
|
/**/
|
||||||
|
|
||||||
|
|
||||||
|
#define BOOST_RANGE_DETAIL_MICROSOFT_CUSTOMIZATION_TEMPLATE_impl(Tag, NamespaceList, Name, ParamSeq) \
|
||||||
|
namespace boost { namespace range_detail_microsoft { \
|
||||||
|
BOOST_RANGE_DETAIL_MICROSOFT_CUSTOMIZATION_TEMPLATE_tag( \
|
||||||
|
Tag, \
|
||||||
|
BOOST_RANGE_DETAIL_MICROSOFT_CUSTOMIZATION_TEMPLATE_params(ParamSeq), \
|
||||||
|
BOOST_RANGE_DETAIL_MICROSOFT_CUSTOMIZATION_TEMPLATE_fullname(NamespaceList, Name, ParamSeq) \
|
||||||
|
) \
|
||||||
|
} } \
|
||||||
|
\
|
||||||
|
namespace boost { \
|
||||||
|
BOOST_RANGE_DETAIL_MICROSOFT_CUSTOMIZATION_TEMPLATE_mutable_iterator( \
|
||||||
|
BOOST_RANGE_DETAIL_MICROSOFT_CUSTOMIZATION_TEMPLATE_params(ParamSeq), \
|
||||||
|
BOOST_RANGE_DETAIL_MICROSOFT_CUSTOMIZATION_TEMPLATE_fullname(NamespaceList, Name, ParamSeq) \
|
||||||
|
) \
|
||||||
|
BOOST_RANGE_DETAIL_MICROSOFT_CUSTOMIZATION_TEMPLATE_const_iterator( \
|
||||||
|
BOOST_RANGE_DETAIL_MICROSOFT_CUSTOMIZATION_TEMPLATE_params(ParamSeq), \
|
||||||
|
BOOST_RANGE_DETAIL_MICROSOFT_CUSTOMIZATION_TEMPLATE_fullname(NamespaceList, Name, ParamSeq) \
|
||||||
|
) \
|
||||||
|
\
|
||||||
|
BOOST_RANGE_DETAIL_MICROSOFT_CUSTOMIZATION_TEMPLATE_size_type( \
|
||||||
|
BOOST_RANGE_DETAIL_MICROSOFT_CUSTOMIZATION_TEMPLATE_params(ParamSeq), \
|
||||||
|
BOOST_RANGE_DETAIL_MICROSOFT_CUSTOMIZATION_TEMPLATE_fullname(NamespaceList, Name, ParamSeq) \
|
||||||
|
) \
|
||||||
|
} \
|
||||||
|
\
|
||||||
|
BOOST_RANGE_DETAIL_MICROSOFT_CUSTOMIZATION_namespace_open(NamespaceList) \
|
||||||
|
BOOST_RANGE_DETAIL_MICROSOFT_CUSTOMIZATION_TEMPLATE_begin( \
|
||||||
|
BOOST_RANGE_DETAIL_MICROSOFT_CUSTOMIZATION_TEMPLATE_params(ParamSeq), \
|
||||||
|
BOOST_RANGE_DETAIL_MICROSOFT_CUSTOMIZATION_TEMPLATE_fullname(NamespaceList, Name, ParamSeq) \
|
||||||
|
) \
|
||||||
|
BOOST_RANGE_DETAIL_MICROSOFT_CUSTOMIZATION_TEMPLATE_begin_const( \
|
||||||
|
BOOST_RANGE_DETAIL_MICROSOFT_CUSTOMIZATION_TEMPLATE_params(ParamSeq), \
|
||||||
|
BOOST_RANGE_DETAIL_MICROSOFT_CUSTOMIZATION_TEMPLATE_fullname(NamespaceList, Name, ParamSeq) \
|
||||||
|
) \
|
||||||
|
BOOST_RANGE_DETAIL_MICROSOFT_CUSTOMIZATION_TEMPLATE_end( \
|
||||||
|
BOOST_RANGE_DETAIL_MICROSOFT_CUSTOMIZATION_TEMPLATE_params(ParamSeq), \
|
||||||
|
BOOST_RANGE_DETAIL_MICROSOFT_CUSTOMIZATION_TEMPLATE_fullname(NamespaceList, Name, ParamSeq) \
|
||||||
|
) \
|
||||||
|
BOOST_RANGE_DETAIL_MICROSOFT_CUSTOMIZATION_TEMPLATE_end_const( \
|
||||||
|
BOOST_RANGE_DETAIL_MICROSOFT_CUSTOMIZATION_TEMPLATE_params(ParamSeq), \
|
||||||
|
BOOST_RANGE_DETAIL_MICROSOFT_CUSTOMIZATION_TEMPLATE_fullname(NamespaceList, Name, ParamSeq) \
|
||||||
|
) \
|
||||||
|
BOOST_RANGE_DETAIL_MICROSOFT_CUSTOMIZATION_TEMPLATE_size( \
|
||||||
|
BOOST_RANGE_DETAIL_MICROSOFT_CUSTOMIZATION_TEMPLATE_params(ParamSeq), \
|
||||||
|
BOOST_RANGE_DETAIL_MICROSOFT_CUSTOMIZATION_TEMPLATE_fullname(NamespaceList, Name, ParamSeq) \
|
||||||
|
) \
|
||||||
|
BOOST_RANGE_DETAIL_MICROSOFT_CUSTOMIZATION_namespace_close(NamespaceList) \
|
||||||
|
/**/
|
||||||
|
|
||||||
|
|
||||||
|
#define BOOST_RANGE_DETAIL_MICROSOFT_CUSTOMIZATION_TEMPLATE_params(ParamSeq) \
|
||||||
|
BOOST_PP_SEQ_FOR_EACH_I(BOOST_RANGE_DETAIL_MICROSOFT_CUSTOMIZATION_TEMPLATE_params_op, ~, ParamSeq) \
|
||||||
|
/**/
|
||||||
|
|
||||||
|
#define BOOST_RANGE_DETAIL_MICROSOFT_CUSTOMIZATION_TEMPLATE_params_op(r, data, i, elem) \
|
||||||
|
BOOST_PP_COMMA_IF(i) elem BOOST_PP_CAT(T, i) \
|
||||||
|
/**/
|
||||||
|
|
||||||
|
|
||||||
|
#define BOOST_RANGE_DETAIL_MICROSOFT_CUSTOMIZATION_TEMPLATE_fullname(NamespaceList, Name, ParamSeq) \
|
||||||
|
BOOST_PP_LIST_FOR_EACH(BOOST_RANGE_DETAIL_MICROSOFT_CUSTOMIZATION_namespace_expand_op, ~, NamespaceList) \
|
||||||
|
:: Name < BOOST_PP_ENUM_PARAMS(BOOST_PP_SEQ_SIZE(ParamSeq), T) > \
|
||||||
|
/**/
|
||||||
|
|
||||||
|
|
||||||
|
#define BOOST_RANGE_DETAIL_MICROSOFT_CUSTOMIZATION_TEMPLATE_tag(Tag, Params, Fullname) \
|
||||||
|
template< Params > \
|
||||||
|
struct customization_tag< Fullname > : \
|
||||||
|
customization_tag_of< Tag, Fullname > \
|
||||||
|
{ }; \
|
||||||
|
/**/
|
||||||
|
|
||||||
|
|
||||||
|
// metafunctions
|
||||||
|
//
|
||||||
|
|
||||||
|
#define BOOST_RANGE_DETAIL_MICROSOFT_CUSTOMIZATION_TEMPLATE_mutable_iterator(Params, Fullname) \
|
||||||
|
template< Params > \
|
||||||
|
struct BOOST_RANGE_DETAIL_MICROSOFT_range_mutable_iterator< Fullname > : \
|
||||||
|
range_detail_microsoft::mutable_iterator_of< Fullname > \
|
||||||
|
{ }; \
|
||||||
|
/**/
|
||||||
|
|
||||||
|
|
||||||
|
#define BOOST_RANGE_DETAIL_MICROSOFT_CUSTOMIZATION_TEMPLATE_const_iterator(Params, Fullname) \
|
||||||
|
template< Params > \
|
||||||
|
struct range_const_iterator< Fullname > : \
|
||||||
|
range_detail_microsoft::const_iterator_of< Fullname > \
|
||||||
|
{ }; \
|
||||||
|
/**/
|
||||||
|
|
||||||
|
|
||||||
|
#define BOOST_RANGE_DETAIL_MICROSOFT_CUSTOMIZATION_TEMPLATE_size_type(Params, Fullname) \
|
||||||
|
template< Params > \
|
||||||
|
struct range_size< Fullname > : \
|
||||||
|
range_detail_microsoft::size_type_of< Fullname > \
|
||||||
|
{ }; \
|
||||||
|
/**/
|
||||||
|
|
||||||
|
|
||||||
|
// functions
|
||||||
|
//
|
||||||
|
|
||||||
|
#define BOOST_RANGE_DETAIL_MICROSOFT_CUSTOMIZATION_TEMPLATE_begin(Params, Fullname) \
|
||||||
|
template< Params > inline \
|
||||||
|
typename boost::range_detail_microsoft::mutable_iterator_of< Fullname >::type \
|
||||||
|
BOOST_RANGE_DETAIL_MICROSOFT_range_begin(Fullname& x) \
|
||||||
|
{ \
|
||||||
|
return boost::range_detail_microsoft::begin_of(x); \
|
||||||
|
} \
|
||||||
|
/**/
|
||||||
|
|
||||||
|
|
||||||
|
#define BOOST_RANGE_DETAIL_MICROSOFT_CUSTOMIZATION_TEMPLATE_begin_const(Params, Fullname) \
|
||||||
|
template< Params > inline \
|
||||||
|
typename boost::range_detail_microsoft::const_iterator_of< Fullname >::type \
|
||||||
|
BOOST_RANGE_DETAIL_MICROSOFT_range_begin(Fullname const& x) \
|
||||||
|
{ \
|
||||||
|
return boost::range_detail_microsoft::begin_of(x); \
|
||||||
|
} \
|
||||||
|
/**/
|
||||||
|
|
||||||
|
|
||||||
|
#define BOOST_RANGE_DETAIL_MICROSOFT_CUSTOMIZATION_TEMPLATE_end(Params, Fullname) \
|
||||||
|
template< Params > inline \
|
||||||
|
typename boost::range_detail_microsoft::mutable_iterator_of< Fullname >::type \
|
||||||
|
BOOST_RANGE_DETAIL_MICROSOFT_range_end(Fullname& x) \
|
||||||
|
{ \
|
||||||
|
return boost::range_detail_microsoft::end_of(x); \
|
||||||
|
} \
|
||||||
|
/**/
|
||||||
|
|
||||||
|
|
||||||
|
#define BOOST_RANGE_DETAIL_MICROSOFT_CUSTOMIZATION_TEMPLATE_end_const(Params, Fullname) \
|
||||||
|
template< Params > inline \
|
||||||
|
typename boost::range_detail_microsoft::const_iterator_of< Fullname >::type \
|
||||||
|
BOOST_RANGE_DETAIL_MICROSOFT_range_end(Fullname const& x) \
|
||||||
|
{ \
|
||||||
|
return boost::range_detail_microsoft::end_of(x); \
|
||||||
|
} \
|
||||||
|
/**/
|
||||||
|
|
||||||
|
|
||||||
|
#if !defined(BOOST_RANGE_DETAIL_MICROSOFT_RANGE_VERSION_1)
|
||||||
|
|
||||||
|
#define BOOST_RANGE_DETAIL_MICROSOFT_CUSTOMIZATION_TEMPLATE_size(Params, Fullname) \
|
||||||
|
/**/
|
||||||
|
|
||||||
|
#else
|
||||||
|
|
||||||
|
#define BOOST_RANGE_DETAIL_MICROSOFT_CUSTOMIZATION_TEMPLATE_size(Params, Fullname) \
|
||||||
|
template< Params > inline \
|
||||||
|
typename boost::range_detail_microsoft::size_type_of< Fullname >::type \
|
||||||
|
boost_range_size(Fullname const& x) \
|
||||||
|
{ \
|
||||||
|
return boost::range_detail_microsoft::size_of(x); \
|
||||||
|
} \
|
||||||
|
/**/
|
||||||
|
|
||||||
|
#endif
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
// list_iterator and helpers
|
||||||
|
//
|
||||||
|
|
||||||
|
|
||||||
|
#include <boost/assert.hpp>
|
||||||
|
#include <boost/iterator/iterator_categories.hpp>
|
||||||
|
#include <boost/iterator/iterator_facade.hpp>
|
||||||
|
#include <boost/mpl/if.hpp>
|
||||||
|
#include <boost/type_traits/is_same.hpp>
|
||||||
|
|
||||||
|
|
||||||
|
// POSITION's header is undocumented, so is NULL.
|
||||||
|
//
|
||||||
|
struct __POSITION; // incomplete, but used as just a pointer.
|
||||||
|
typedef __POSITION *POSITION;
|
||||||
|
|
||||||
|
|
||||||
|
namespace boost { namespace range_detail_microsoft {
|
||||||
|
|
||||||
|
|
||||||
|
template<
|
||||||
|
class ListT,
|
||||||
|
class Value,
|
||||||
|
class Reference,
|
||||||
|
class Traversal
|
||||||
|
>
|
||||||
|
struct list_iterator;
|
||||||
|
|
||||||
|
|
||||||
|
template<
|
||||||
|
class ListT,
|
||||||
|
class Value,
|
||||||
|
class Reference,
|
||||||
|
class Traversal
|
||||||
|
>
|
||||||
|
struct list_iterator_super
|
||||||
|
{
|
||||||
|
typedef typename mpl::if_< is_same<use_default, Reference>,
|
||||||
|
Value&,
|
||||||
|
Reference
|
||||||
|
>::type ref_t;
|
||||||
|
|
||||||
|
typedef typename mpl::if_< is_same<use_default, Traversal>,
|
||||||
|
bidirectional_traversal_tag,
|
||||||
|
Traversal
|
||||||
|
>::type trv_t;
|
||||||
|
|
||||||
|
typedef iterator_facade<
|
||||||
|
list_iterator<ListT, Value, Reference, Traversal>,
|
||||||
|
Value,
|
||||||
|
trv_t,
|
||||||
|
ref_t
|
||||||
|
> type;
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
template<
|
||||||
|
class ListT,
|
||||||
|
class Value,
|
||||||
|
class Reference = use_default,
|
||||||
|
class Traversal = use_default
|
||||||
|
>
|
||||||
|
struct list_iterator :
|
||||||
|
list_iterator_super<ListT, Value, Reference, Traversal>::type
|
||||||
|
{
|
||||||
|
private:
|
||||||
|
typedef list_iterator self_t;
|
||||||
|
typedef typename list_iterator_super<ListT, Value, Reference, Traversal>::type super_t;
|
||||||
|
typedef typename super_t::reference ref_t;
|
||||||
|
|
||||||
|
public:
|
||||||
|
explicit list_iterator()
|
||||||
|
{ }
|
||||||
|
|
||||||
|
explicit list_iterator(ListT& lst, POSITION pos) :
|
||||||
|
m_plst(boost::addressof(lst)), m_pos(pos)
|
||||||
|
{ }
|
||||||
|
|
||||||
|
template< class, class, class, class > friend struct list_iterator;
|
||||||
|
template< class ListT_, class Value_, class Reference_, class Traversal_>
|
||||||
|
list_iterator(list_iterator<ListT_, Value_, Reference_, Traversal_> const& other) :
|
||||||
|
m_plst(other.m_plst), m_pos(other.m_pos)
|
||||||
|
{ }
|
||||||
|
|
||||||
|
private:
|
||||||
|
ListT *m_plst;
|
||||||
|
POSITION m_pos;
|
||||||
|
|
||||||
|
friend class iterator_core_access;
|
||||||
|
ref_t dereference() const
|
||||||
|
{
|
||||||
|
BOOST_ASSERT(m_pos != 0 && "out of range");
|
||||||
|
return m_plst->GetAt(m_pos);
|
||||||
|
}
|
||||||
|
|
||||||
|
// A B C D x
|
||||||
|
// Head Tail NULL(0)
|
||||||
|
//
|
||||||
|
void increment()
|
||||||
|
{
|
||||||
|
BOOST_ASSERT(m_pos != 0 && "out of range");
|
||||||
|
m_plst->GetNext(m_pos);
|
||||||
|
}
|
||||||
|
|
||||||
|
void decrement()
|
||||||
|
{
|
||||||
|
if (m_pos == 0) {
|
||||||
|
m_pos = m_plst->GetTailPosition();
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
m_plst->GetPrev(m_pos);
|
||||||
|
}
|
||||||
|
|
||||||
|
bool equal(self_t const& other) const
|
||||||
|
{
|
||||||
|
BOOST_ASSERT(m_plst == other.m_plst && "iterators incompatible");
|
||||||
|
return m_pos == other.m_pos;
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
// customization helpers
|
||||||
|
//
|
||||||
|
|
||||||
|
struct array_functions
|
||||||
|
{
|
||||||
|
template< class Iterator, class X >
|
||||||
|
Iterator begin(X& x)
|
||||||
|
{
|
||||||
|
return x.GetData();
|
||||||
|
}
|
||||||
|
|
||||||
|
template< class Iterator, class X >
|
||||||
|
Iterator end(X& x)
|
||||||
|
{
|
||||||
|
return begin<Iterator>(x) + x.GetSize();
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
struct list_functions
|
||||||
|
{
|
||||||
|
template< class Iterator, class X >
|
||||||
|
Iterator begin(X& x)
|
||||||
|
{
|
||||||
|
return Iterator(x, x.GetHeadPosition());
|
||||||
|
}
|
||||||
|
|
||||||
|
template< class Iterator, class X >
|
||||||
|
Iterator end(X& x)
|
||||||
|
{
|
||||||
|
return Iterator(x, POSITION(0));
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
} } // namespace boost::range_detail_microsoft
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
// test
|
||||||
|
//
|
||||||
|
|
||||||
|
|
||||||
|
#if defined(BOOST_RANGE_DETAIL_MICROSOFT_TEST)
|
||||||
|
|
||||||
|
|
||||||
|
#include <algorithm>
|
||||||
|
#include <iterator>
|
||||||
|
#include <vector>
|
||||||
|
#include <boost/concept_check.hpp>
|
||||||
|
#include <boost/next_prior.hpp>
|
||||||
|
#include <boost/range/begin.hpp>
|
||||||
|
#include <boost/range/concepts.hpp>
|
||||||
|
#include <boost/range/const_iterator.hpp>
|
||||||
|
#include <boost/range/difference_type.hpp>
|
||||||
|
#include <boost/range/distance.hpp>
|
||||||
|
#include <boost/range/empty.hpp>
|
||||||
|
#include <boost/range/iterator_range.hpp>
|
||||||
|
#include <boost/range/mutable_iterator.hpp>
|
||||||
|
#include <boost/range/rbegin.hpp>
|
||||||
|
#include <boost/range/rend.hpp>
|
||||||
|
#include <boost/range/value_type.hpp>
|
||||||
|
#include <boost/type_traits/is_same.hpp>
|
||||||
|
|
||||||
|
|
||||||
|
namespace boost { namespace range_detail_microsoft {
|
||||||
|
|
||||||
|
|
||||||
|
template< class Range1, class Range2 >
|
||||||
|
bool test_equals(Range1 const& rng1, Range2 const& rng2)
|
||||||
|
{
|
||||||
|
return
|
||||||
|
boost::distance(rng1) == boost::distance(rng2) &&
|
||||||
|
std::equal(boost::begin(rng1), boost::end(rng1), boost::begin(rng2))
|
||||||
|
;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
template< class AssocContainer, class PairT >
|
||||||
|
bool test_find_key_and_mapped(AssocContainer const& ac, PairT const& pa)
|
||||||
|
{
|
||||||
|
typedef typename boost::range_const_iterator<AssocContainer>::type iter_t;
|
||||||
|
for (iter_t it = boost::const_begin(ac), last = boost::const_end(ac); it != last; ++it) {
|
||||||
|
if (it->first == pa.first && it->second == pa.second)
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
// test functions
|
||||||
|
//
|
||||||
|
|
||||||
|
template< class Range >
|
||||||
|
bool test_emptiness(Range& )
|
||||||
|
{
|
||||||
|
bool result = true;
|
||||||
|
|
||||||
|
Range emptyRng;
|
||||||
|
result = result && boost::empty(emptyRng);
|
||||||
|
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
template< class Range >
|
||||||
|
bool test_trivial(Range& rng)
|
||||||
|
{
|
||||||
|
bool result = true;
|
||||||
|
|
||||||
|
// convertibility check
|
||||||
|
typedef typename range_const_iterator<Range>::type citer_t;
|
||||||
|
citer_t cit = boost::begin(rng);
|
||||||
|
(void)cit; // unused
|
||||||
|
|
||||||
|
// mutability check
|
||||||
|
typedef typename range_value<Range>::type val_t;
|
||||||
|
val_t v = *boost::begin(rng);
|
||||||
|
*boost::begin(rng) = v;
|
||||||
|
result = result && *boost::begin(rng) == v;
|
||||||
|
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
template< class Range >
|
||||||
|
bool test_forward(Range& rng)
|
||||||
|
{
|
||||||
|
boost::function_requires< ForwardRangeConcept<Range> >();
|
||||||
|
|
||||||
|
bool result = (test_trivial)(rng);
|
||||||
|
|
||||||
|
typedef typename range_value<Range>::type val_t;
|
||||||
|
|
||||||
|
std::vector<val_t> saved;
|
||||||
|
std::copy(boost::begin(rng), boost::end(rng), std::back_inserter(saved));
|
||||||
|
std::rotate(boost::begin(saved), boost::next(boost::begin(saved)), boost::end(saved));
|
||||||
|
|
||||||
|
std::rotate(boost::begin(rng), boost::next(boost::begin(rng)), boost::end(rng));
|
||||||
|
|
||||||
|
return result && (test_equals)(saved, rng);
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
template< class Range >
|
||||||
|
bool test_bidirectional(Range& rng)
|
||||||
|
{
|
||||||
|
boost::function_requires< BidirectionalRangeConcept<Range> >();
|
||||||
|
|
||||||
|
bool result = (test_forward)(rng);
|
||||||
|
|
||||||
|
typedef typename range_value<Range>::type val_t;
|
||||||
|
|
||||||
|
std::vector<val_t> saved;
|
||||||
|
std::copy(boost::begin(rng), boost::end(rng), std::back_inserter(saved));
|
||||||
|
|
||||||
|
result = result && (test_equals)(
|
||||||
|
boost::make_iterator_range(boost::rbegin(saved), boost::rend(saved)),
|
||||||
|
boost::make_iterator_range(boost::rbegin(rng), boost::rend(rng))
|
||||||
|
);
|
||||||
|
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
template< class Range >
|
||||||
|
bool test_random_access(Range& rng)
|
||||||
|
{
|
||||||
|
boost::function_requires< RandomAccessRangeConcept<Range> >();
|
||||||
|
|
||||||
|
bool result = (test_bidirectional)(rng);
|
||||||
|
|
||||||
|
typedef typename range_value<Range>::type val_t;
|
||||||
|
|
||||||
|
std::vector<val_t> saved;
|
||||||
|
std::copy(boost::begin(rng), boost::end(rng), std::back_inserter(saved));
|
||||||
|
std::sort(boost::begin(saved), boost::end(saved));
|
||||||
|
|
||||||
|
std::random_shuffle(boost::begin(rng), boost::end(rng));
|
||||||
|
std::sort(boost::begin(rng), boost::end(rng));
|
||||||
|
result = result && (test_equals)(rng, saved);
|
||||||
|
|
||||||
|
std::random_shuffle(boost::begin(rng), boost::end(rng));
|
||||||
|
std::stable_sort(boost::begin(rng), boost::end(rng));
|
||||||
|
result = result && (test_equals)(rng, saved);
|
||||||
|
|
||||||
|
std::random_shuffle(boost::begin(rng), boost::end(rng));
|
||||||
|
std::partial_sort(boost::begin(rng), boost::end(rng), boost::end(rng));
|
||||||
|
result = result && (test_equals)(rng, saved);
|
||||||
|
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
// initializer
|
||||||
|
//
|
||||||
|
|
||||||
|
template< class ArrayT, class SampleRange >
|
||||||
|
bool test_init_array(ArrayT& arr, SampleRange const& sample)
|
||||||
|
{
|
||||||
|
typedef typename range_const_iterator<SampleRange>::type iter_t;
|
||||||
|
typedef typename range_value<SampleRange>::type val_t;
|
||||||
|
|
||||||
|
for (iter_t it = boost::const_begin(sample), last = boost::const_end(sample); it != last; ++it) {
|
||||||
|
val_t v = *it; // works around ATL3 CSimpleArray
|
||||||
|
arr.Add(v);
|
||||||
|
}
|
||||||
|
|
||||||
|
return (test_equals)(arr, sample);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
template< class ListT, class SampleRange >
|
||||||
|
bool test_init_list(ListT& lst, SampleRange const& sample)
|
||||||
|
{
|
||||||
|
typedef typename range_const_iterator<SampleRange>::type iter_t;
|
||||||
|
|
||||||
|
for (iter_t it = boost::const_begin(sample), last = boost::const_end(sample); it != last; ++it) {
|
||||||
|
lst.AddTail(*it);
|
||||||
|
}
|
||||||
|
|
||||||
|
return (test_equals)(lst, sample);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
template< class StringT, class SampleRange >
|
||||||
|
bool test_init_string(StringT& str, SampleRange const& sample)
|
||||||
|
{
|
||||||
|
typedef typename range_const_iterator<SampleRange>::type iter_t;
|
||||||
|
typedef typename range_value<SampleRange>::type val_t;
|
||||||
|
|
||||||
|
for (iter_t it = boost::const_begin(sample), last = boost::const_end(sample); it != last; ++it) {
|
||||||
|
str += *it;
|
||||||
|
}
|
||||||
|
|
||||||
|
return (test_equals)(str, sample);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
template< class MapT, class SampleMap >
|
||||||
|
bool test_init_map(MapT& map, SampleMap const& sample)
|
||||||
|
{
|
||||||
|
typedef typename range_const_iterator<SampleMap>::type iter_t;
|
||||||
|
|
||||||
|
for (iter_t it = boost::const_begin(sample), last = boost::const_end(sample); it != last; ++it) {
|
||||||
|
map.SetAt(it->first, it->second);
|
||||||
|
}
|
||||||
|
|
||||||
|
return boost::distance(map) == boost::distance(sample);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
// metafunction test
|
||||||
|
//
|
||||||
|
|
||||||
|
template< class Range, class Iter >
|
||||||
|
struct test_mutable_iter :
|
||||||
|
boost::is_same< typename boost::BOOST_RANGE_DETAIL_MICROSOFT_range_mutable_iterator<Range>::type, Iter >
|
||||||
|
{ };
|
||||||
|
|
||||||
|
|
||||||
|
template< class Range, class Iter >
|
||||||
|
struct test_const_iter :
|
||||||
|
boost::is_same< typename boost::range_const_iterator<Range>::type, Iter >
|
||||||
|
{ };
|
||||||
|
|
||||||
|
|
||||||
|
} } // namespace boost::range_detail_microsoft
|
||||||
|
|
||||||
|
|
||||||
|
#endif // defined(BOOST_RANGE_DETAIL_MICROSOFT_TEST)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
#endif
|
@ -54,55 +54,7 @@ namespace boost
|
|||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
template<>
|
|
||||||
struct range_size_type_<char_array_>
|
|
||||||
{
|
|
||||||
template< typename A >
|
|
||||||
struct pts
|
|
||||||
{
|
|
||||||
typedef std::size_t type;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
template<>
|
|
||||||
struct range_size_type_<char_ptr_>
|
|
||||||
{
|
|
||||||
template< typename S >
|
|
||||||
struct pts
|
|
||||||
{
|
|
||||||
typedef std::size_t type;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
template<>
|
|
||||||
struct range_size_type_<const_char_ptr_>
|
|
||||||
{
|
|
||||||
template< typename S >
|
|
||||||
struct pts
|
|
||||||
{
|
|
||||||
typedef std::size_t type;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
template<>
|
|
||||||
struct range_size_type_<wchar_t_ptr_>
|
|
||||||
{
|
|
||||||
template< typename S >
|
|
||||||
struct pts
|
|
||||||
{
|
|
||||||
typedef std::size_t type;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
template<>
|
|
||||||
struct range_size_type_<const_wchar_t_ptr_>
|
|
||||||
{
|
|
||||||
template< typename S >
|
|
||||||
struct pts
|
|
||||||
{
|
|
||||||
typedef std::size_t type;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
}
|
}
|
||||||
|
|
||||||
template< typename C >
|
template< typename C >
|
||||||
|
38
include/boost/range/detail/str_types.hpp
Executable file
38
include/boost/range/detail/str_types.hpp
Executable file
@ -0,0 +1,38 @@
|
|||||||
|
// Boost.Range library
|
||||||
|
//
|
||||||
|
// Copyright Thorsten Ottosen 2006. Use, modification and
|
||||||
|
// distribution is subject to the Boost Software License, Version
|
||||||
|
// 1.0. (See accompanying file LICENSE_1_0.txt or copy at
|
||||||
|
// http://www.boost.org/LICENSE_1_0.txt)
|
||||||
|
//
|
||||||
|
// For more information, see http://www.boost.org/libs/range/
|
||||||
|
//
|
||||||
|
|
||||||
|
#ifndef BOOST_RANGE_DETAIL_STR_TYPES_HPP
|
||||||
|
#define BOOST_RANGE_DETAIL_STR_TYPES_HPP
|
||||||
|
|
||||||
|
#include <boost/range/size_type.hpp>
|
||||||
|
#include <boost/range/iterator.hpp>
|
||||||
|
|
||||||
|
namespace boost
|
||||||
|
{
|
||||||
|
template< class T >
|
||||||
|
struct range_mutable_iterator<T*>
|
||||||
|
{
|
||||||
|
typedef T* type;
|
||||||
|
};
|
||||||
|
|
||||||
|
template< class T >
|
||||||
|
struct range_const_iterator<T*>
|
||||||
|
{
|
||||||
|
typedef const T* type;
|
||||||
|
};
|
||||||
|
|
||||||
|
template< class T >
|
||||||
|
struct range_size<T*>
|
||||||
|
{
|
||||||
|
typedef std::size_t type;
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
#endif
|
@ -56,56 +56,6 @@ namespace boost
|
|||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
template<>
|
|
||||||
struct range_value_type_<char_array_>
|
|
||||||
{
|
|
||||||
template< typename T >
|
|
||||||
struct pts
|
|
||||||
{
|
|
||||||
typedef char type;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
template<>
|
|
||||||
struct range_value_type_<char_ptr_>
|
|
||||||
{
|
|
||||||
template< typename S >
|
|
||||||
struct pts
|
|
||||||
{
|
|
||||||
typedef char type;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
template<>
|
|
||||||
struct range_value_type_<const_char_ptr_>
|
|
||||||
{
|
|
||||||
template< typename S >
|
|
||||||
struct pts
|
|
||||||
{
|
|
||||||
typedef const char type;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
template<>
|
|
||||||
struct range_value_type_<wchar_t_ptr_>
|
|
||||||
{
|
|
||||||
template< typename S >
|
|
||||||
struct pts
|
|
||||||
{
|
|
||||||
typedef wchar_t type;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
template<>
|
|
||||||
struct range_value_type_<const_wchar_t_ptr_>
|
|
||||||
{
|
|
||||||
template< typename S >
|
|
||||||
struct pts
|
|
||||||
{
|
|
||||||
typedef const wchar_t type;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
template< typename C >
|
template< typename C >
|
||||||
|
@ -16,130 +16,14 @@
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
#include <boost/range/config.hpp>
|
#include <boost/range/config.hpp>
|
||||||
#include <boost/range/const_iterator.hpp>
|
#include <boost/range/iterator.hpp>
|
||||||
#include <boost/iterator/iterator_traits.hpp>
|
#include <boost/iterator/iterator_traits.hpp>
|
||||||
|
|
||||||
namespace boost
|
namespace boost
|
||||||
{
|
{
|
||||||
template< class T >
|
template< class T >
|
||||||
struct range_difference
|
struct range_difference : iterator_difference< typename range_iterator<T>::type >
|
||||||
{
|
{ };
|
||||||
typedef BOOST_DEDUCED_TYPENAME iterator_difference<
|
|
||||||
BOOST_DEDUCED_TYPENAME range_const_iterator<T>::type >::type
|
|
||||||
type;
|
|
||||||
};
|
|
||||||
}
|
}
|
||||||
|
|
||||||
//#ifdef BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION
|
|
||||||
//#include <boost/range/detail/difference_type.hpp>
|
|
||||||
//#else
|
|
||||||
|
|
||||||
/*
|
|
||||||
#include <cstddef>
|
|
||||||
#include <utility>
|
|
||||||
|
|
||||||
namespace boost
|
|
||||||
{
|
|
||||||
//////////////////////////////////////////////////////////////////////////
|
|
||||||
// default
|
|
||||||
//////////////////////////////////////////////////////////////////////////
|
|
||||||
|
|
||||||
template< typename C >
|
|
||||||
struct range_difference
|
|
||||||
{
|
|
||||||
typedef BOOST_DEDUCED_TYPENAME C::difference_type type;
|
|
||||||
};
|
|
||||||
|
|
||||||
//////////////////////////////////////////////////////////////////////////
|
|
||||||
// pair
|
|
||||||
//////////////////////////////////////////////////////////////////////////
|
|
||||||
|
|
||||||
template< typename Iterator >
|
|
||||||
struct range_difference< std::pair<Iterator,Iterator> >
|
|
||||||
{
|
|
||||||
typedef BOOST_DEDUCED_TYPENAME
|
|
||||||
iterator_difference<Iterator>::type type;
|
|
||||||
};
|
|
||||||
|
|
||||||
template< typename Iterator >
|
|
||||||
struct range_difference< const std::pair<Iterator,Iterator> >
|
|
||||||
{
|
|
||||||
typedef BOOST_DEDUCED_TYPENAME
|
|
||||||
iterator_difference<Iterator>::type type;
|
|
||||||
};
|
|
||||||
|
|
||||||
|
|
||||||
//////////////////////////////////////////////////////////////////////////
|
|
||||||
// array
|
|
||||||
//////////////////////////////////////////////////////////////////////////
|
|
||||||
|
|
||||||
template< typename T, std::size_t sz >
|
|
||||||
struct range_difference< T[sz] >
|
|
||||||
{
|
|
||||||
typedef std::ptrdiff_t type;
|
|
||||||
};
|
|
||||||
|
|
||||||
template< typename T, std::size_t sz >
|
|
||||||
struct range_difference< const T[sz] >
|
|
||||||
{
|
|
||||||
typedef std::ptrdiff_t type;
|
|
||||||
};
|
|
||||||
|
|
||||||
//////////////////////////////////////////////////////////////////////////
|
|
||||||
// string
|
|
||||||
//////////////////////////////////////////////////////////////////////////
|
|
||||||
|
|
||||||
template<>
|
|
||||||
struct range_difference< char* >
|
|
||||||
{
|
|
||||||
typedef std::ptrdiff_t type;
|
|
||||||
};
|
|
||||||
|
|
||||||
template<>
|
|
||||||
struct range_difference< wchar_t* >
|
|
||||||
{
|
|
||||||
typedef std::ptrdiff_t type;
|
|
||||||
};
|
|
||||||
|
|
||||||
template<>
|
|
||||||
struct range_difference< const char* >
|
|
||||||
{
|
|
||||||
typedef std::ptrdiff_t type;
|
|
||||||
};
|
|
||||||
|
|
||||||
template<>
|
|
||||||
struct range_difference< const wchar_t* >
|
|
||||||
{
|
|
||||||
typedef std::ptrdiff_t type;
|
|
||||||
};
|
|
||||||
|
|
||||||
template<>
|
|
||||||
struct range_difference< char* const >
|
|
||||||
{
|
|
||||||
typedef std::ptrdiff_t type;
|
|
||||||
};
|
|
||||||
|
|
||||||
template<>
|
|
||||||
struct range_difference< wchar_t* const >
|
|
||||||
{
|
|
||||||
typedef std::ptrdiff_t type;
|
|
||||||
};
|
|
||||||
|
|
||||||
template<>
|
|
||||||
struct range_difference< const char* const >
|
|
||||||
{
|
|
||||||
typedef std::ptrdiff_t type;
|
|
||||||
};
|
|
||||||
|
|
||||||
template<>
|
|
||||||
struct range_difference< const wchar_t* const >
|
|
||||||
{
|
|
||||||
typedef std::ptrdiff_t type;
|
|
||||||
};
|
|
||||||
|
|
||||||
} // namespace boost
|
|
||||||
|
|
||||||
#endif // BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION
|
|
||||||
*/
|
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
34
include/boost/range/distance.hpp
Executable file
34
include/boost/range/distance.hpp
Executable file
@ -0,0 +1,34 @@
|
|||||||
|
// Boost.Range library
|
||||||
|
//
|
||||||
|
// Copyright Thorsten Ottosen 2003-2006. Use, modification and
|
||||||
|
// distribution is subject to the Boost Software License, Version
|
||||||
|
// 1.0. (See accompanying file LICENSE_1_0.txt or copy at
|
||||||
|
// http://www.boost.org/LICENSE_1_0.txt)
|
||||||
|
//
|
||||||
|
// For more information, see http://www.boost.org/libs/range/
|
||||||
|
//
|
||||||
|
|
||||||
|
#ifndef BOOST_RANGE_DISTANCE_HPP
|
||||||
|
#define BOOST_RANGE_DISTANCE_HPP
|
||||||
|
|
||||||
|
#if defined(_MSC_VER) && (_MSC_VER >= 1200)
|
||||||
|
# pragma once
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#include <boost/range/begin.hpp>
|
||||||
|
#include <boost/range/end.hpp>
|
||||||
|
#include <boost/range/difference_type.hpp>
|
||||||
|
|
||||||
|
namespace boost
|
||||||
|
{
|
||||||
|
|
||||||
|
template< class T >
|
||||||
|
inline BOOST_DEDUCED_TYPENAME range_difference<T>::type
|
||||||
|
distance( const T& r )
|
||||||
|
{
|
||||||
|
return std::distance( boost::begin( r ), boost::end( r ) );
|
||||||
|
}
|
||||||
|
|
||||||
|
} // namespace 'boost'
|
||||||
|
|
||||||
|
#endif
|
@ -16,52 +16,19 @@
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
#include <boost/range/config.hpp>
|
#include <boost/range/config.hpp>
|
||||||
//#ifdef BOOST_NO_FUNCTION_TEMPLATE_ORDERING
|
|
||||||
//#include <boost/range/detail/empty.hpp>
|
|
||||||
//#else
|
|
||||||
|
|
||||||
#include <boost/range/begin.hpp>
|
#include <boost/range/begin.hpp>
|
||||||
#include <boost/range/end.hpp>
|
#include <boost/range/end.hpp>
|
||||||
|
|
||||||
namespace boost
|
namespace boost
|
||||||
{
|
{
|
||||||
namespace range_detail
|
|
||||||
{
|
|
||||||
|
|
||||||
//////////////////////////////////////////////////////////////////////
|
|
||||||
// primary template
|
|
||||||
//////////////////////////////////////////////////////////////////////
|
|
||||||
|
|
||||||
template< typename C >
|
|
||||||
inline bool empty( const C& c )
|
|
||||||
{
|
|
||||||
return boost::begin( c ) == boost::end( c );
|
|
||||||
}
|
|
||||||
|
|
||||||
//////////////////////////////////////////////////////////////////////
|
|
||||||
// string
|
|
||||||
//////////////////////////////////////////////////////////////////////
|
|
||||||
|
|
||||||
inline bool empty( const char* const& s )
|
|
||||||
{
|
|
||||||
return s == 0 || s[0] == 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
inline bool empty( const wchar_t* const& s )
|
|
||||||
{
|
|
||||||
return s == 0 || s[0] == 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
} // namespace 'range_detail'
|
|
||||||
|
|
||||||
template< class T >
|
template< class T >
|
||||||
inline bool empty( const T& r )
|
inline bool empty( const T& r )
|
||||||
{
|
{
|
||||||
return range_detail::empty( r );
|
return boost::begin( r ) == boost::end( r );
|
||||||
}
|
}
|
||||||
|
|
||||||
} // namepace 'boost'
|
} // namepace 'boost'
|
||||||
|
|
||||||
//#endif // BOOST_NO_FUNCTION_TEMPLATE_ORDERING
|
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
@ -15,7 +15,6 @@
|
|||||||
# pragma once
|
# pragma once
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#include <boost/type_traits/remove_const.hpp>
|
|
||||||
#include <boost/range/config.hpp>
|
#include <boost/range/config.hpp>
|
||||||
|
|
||||||
#ifdef BOOST_NO_FUNCTION_TEMPLATE_ORDERING
|
#ifdef BOOST_NO_FUNCTION_TEMPLATE_ORDERING
|
||||||
@ -39,19 +38,15 @@ namespace range_detail
|
|||||||
//////////////////////////////////////////////////////////////////////
|
//////////////////////////////////////////////////////////////////////
|
||||||
// primary template
|
// primary template
|
||||||
//////////////////////////////////////////////////////////////////////
|
//////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
template< typename C >
|
template< typename C >
|
||||||
inline BOOST_DEDUCED_TYPENAME range_const_iterator<C>::type
|
inline BOOST_DEDUCED_TYPENAME range_iterator<C>::type
|
||||||
boost_range_end( const C& c )
|
range_end( C& c )
|
||||||
{
|
|
||||||
return c.end();
|
|
||||||
}
|
|
||||||
|
|
||||||
template< typename C >
|
|
||||||
inline BOOST_DEDUCED_TYPENAME range_iterator<
|
|
||||||
typename remove_const<C>::type >::type
|
|
||||||
boost_range_end( C& c )
|
|
||||||
{
|
{
|
||||||
|
//
|
||||||
|
// If you get a compile-error here, it is most likely because
|
||||||
|
// you have not implemented range_begin() properly in
|
||||||
|
// the namespace of C
|
||||||
|
//
|
||||||
return c.end();
|
return c.end();
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -60,13 +55,13 @@ namespace range_detail
|
|||||||
//////////////////////////////////////////////////////////////////////
|
//////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
template< typename Iterator >
|
template< typename Iterator >
|
||||||
inline Iterator boost_range_end( const std::pair<Iterator,Iterator>& p )
|
inline Iterator range_end( const std::pair<Iterator,Iterator>& p )
|
||||||
{
|
{
|
||||||
return p.second;
|
return p.second;
|
||||||
}
|
}
|
||||||
|
|
||||||
template< typename Iterator >
|
template< typename Iterator >
|
||||||
inline Iterator boost_range_end( std::pair<Iterator,Iterator>& p )
|
inline Iterator range_end( std::pair<Iterator,Iterator>& p )
|
||||||
{
|
{
|
||||||
return p.second;
|
return p.second;
|
||||||
}
|
}
|
||||||
@ -76,64 +71,17 @@ namespace range_detail
|
|||||||
//////////////////////////////////////////////////////////////////////
|
//////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
template< typename T, std::size_t sz >
|
template< typename T, std::size_t sz >
|
||||||
inline const T* boost_range_end( const T (&array)[sz] )
|
inline const T* range_end( const T (&array)[sz] )
|
||||||
{
|
{
|
||||||
return range_detail::array_end<T,sz>( array );
|
return range_detail::array_end<T,sz>( array );
|
||||||
}
|
}
|
||||||
|
|
||||||
template< typename T, std::size_t sz >
|
template< typename T, std::size_t sz >
|
||||||
inline T* boost_range_end( T (&array)[sz] )
|
inline T* range_end( T (&array)[sz] )
|
||||||
{
|
{
|
||||||
return range_detail::array_end<T,sz>( array );
|
return range_detail::array_end<T,sz>( array );
|
||||||
}
|
}
|
||||||
|
|
||||||
//////////////////////////////////////////////////////////////////////
|
|
||||||
// string
|
|
||||||
//////////////////////////////////////////////////////////////////////
|
|
||||||
|
|
||||||
#if 1 || BOOST_WORKAROUND(__MWERKS__, <= 0x3204 ) || BOOST_WORKAROUND(__BORLANDC__, BOOST_TESTED_AT(0x564))
|
|
||||||
// CW up to 9.3 and borland have troubles with function ordering
|
|
||||||
inline char* boost_range_end( char* s )
|
|
||||||
{
|
|
||||||
return range_detail::str_end( s );
|
|
||||||
}
|
|
||||||
|
|
||||||
inline wchar_t* boost_range_end( wchar_t* s )
|
|
||||||
{
|
|
||||||
return range_detail::str_end( s );
|
|
||||||
}
|
|
||||||
|
|
||||||
inline const char* boost_range_end( const char* s )
|
|
||||||
{
|
|
||||||
return range_detail::str_end( s );
|
|
||||||
}
|
|
||||||
|
|
||||||
inline const wchar_t* boost_range_end( const wchar_t* s )
|
|
||||||
{
|
|
||||||
return range_detail::str_end( s );
|
|
||||||
}
|
|
||||||
#else
|
|
||||||
inline char* boost_range_end( char*& s )
|
|
||||||
{
|
|
||||||
return range_detail::str_end( s );
|
|
||||||
}
|
|
||||||
|
|
||||||
inline wchar_t* boost_range_end( wchar_t*& s )
|
|
||||||
{
|
|
||||||
return range_detail::str_end( s );
|
|
||||||
}
|
|
||||||
|
|
||||||
inline const char* boost_range_end( const char*& s )
|
|
||||||
{
|
|
||||||
return range_detail::str_end( s );
|
|
||||||
}
|
|
||||||
|
|
||||||
inline const wchar_t* boost_range_end( const wchar_t*& s )
|
|
||||||
{
|
|
||||||
return range_detail::str_end( s );
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#if !BOOST_WORKAROUND(__BORLANDC__, BOOST_TESTED_AT(0x564)) && \
|
#if !BOOST_WORKAROUND(__BORLANDC__, BOOST_TESTED_AT(0x564)) && \
|
||||||
!BOOST_WORKAROUND(__GNUC__, < 3) \
|
!BOOST_WORKAROUND(__GNUC__, < 3) \
|
||||||
/**/
|
/**/
|
||||||
@ -141,46 +89,27 @@ namespace range_detail
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
template< class T >
|
template< class T >
|
||||||
inline BOOST_DEDUCED_TYPENAME range_iterator<
|
inline BOOST_DEDUCED_TYPENAME range_iterator<T>::type end( T& r )
|
||||||
typename remove_const<T>::type >::type end( T& r )
|
|
||||||
{
|
{
|
||||||
#if !BOOST_WORKAROUND(__BORLANDC__, BOOST_TESTED_AT(0x564)) && \
|
#if !BOOST_WORKAROUND(__BORLANDC__, BOOST_TESTED_AT(0x564)) && \
|
||||||
!BOOST_WORKAROUND(__GNUC__, < 3) \
|
!BOOST_WORKAROUND(__GNUC__, < 3) \
|
||||||
/**/
|
/**/
|
||||||
using namespace range_detail;
|
using namespace range_detail;
|
||||||
#endif
|
#endif
|
||||||
return boost_range_end( r );
|
return range_end( r );
|
||||||
}
|
}
|
||||||
|
|
||||||
template< class T >
|
template< class T >
|
||||||
inline BOOST_DEDUCED_TYPENAME range_const_iterator<T>::type end( const T& r )
|
inline BOOST_DEDUCED_TYPENAME range_iterator<const T>::type end( const T& r )
|
||||||
{
|
{
|
||||||
#if !BOOST_WORKAROUND(__BORLANDC__, BOOST_TESTED_AT(0x564)) && \
|
#if !BOOST_WORKAROUND(__BORLANDC__, BOOST_TESTED_AT(0x564)) && \
|
||||||
!BOOST_WORKAROUND(__GNUC__, < 3) \
|
!BOOST_WORKAROUND(__GNUC__, < 3) \
|
||||||
/**/
|
/**/
|
||||||
using namespace range_detail;
|
using namespace range_detail;
|
||||||
#endif
|
#endif
|
||||||
return boost_range_end( r );
|
return range_end( r );
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
#if BOOST_WORKAROUND(__MWERKS__, <= 0x3003 ) || BOOST_WORKAROUND(__BORLANDC__, BOOST_TESTED_AT(0x564))
|
|
||||||
// BCB and CW are not able to overload pointer when class overloads are also available.
|
|
||||||
template<>
|
|
||||||
inline range_const_iterator<const char*>::type end<const char*>( const char*& r )
|
|
||||||
{
|
|
||||||
return range_detail::str_end( r );
|
|
||||||
}
|
|
||||||
|
|
||||||
template<>
|
|
||||||
inline range_const_iterator<const wchar_t*>::type end<const wchar_t*>( const wchar_t*& r )
|
|
||||||
{
|
|
||||||
return range_detail::str_end( r );
|
|
||||||
}
|
|
||||||
|
|
||||||
#endif
|
|
||||||
|
|
||||||
} // namespace 'boost'
|
} // namespace 'boost'
|
||||||
|
|
||||||
|
|
||||||
@ -191,7 +120,7 @@ inline range_const_iterator<const wchar_t*>::type end<const wchar_t*>( const wch
|
|||||||
namespace boost
|
namespace boost
|
||||||
{
|
{
|
||||||
template< class T >
|
template< class T >
|
||||||
inline BOOST_DEDUCED_TYPENAME range_const_iterator<T>::type
|
inline BOOST_DEDUCED_TYPENAME range_iterator<const T>::type
|
||||||
const_end( const T& r )
|
const_end( const T& r )
|
||||||
{
|
{
|
||||||
return boost::end( r );
|
return boost::end( r );
|
||||||
@ -199,3 +128,4 @@ namespace boost
|
|||||||
}
|
}
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
// Boost.Range library
|
// Boost.Range library
|
||||||
//
|
//
|
||||||
// Copyright Thorsten Ottosen 2003-2004. Use, modification and
|
// Copyright Thorsten Ottosen 2003-2006. Use, modification and
|
||||||
// distribution is subject to the Boost Software License, Version
|
// distribution is subject to the Boost Software License, Version
|
||||||
// 1.0. (See accompanying file LICENSE_1_0.txt or copy at
|
// 1.0. (See accompanying file LICENSE_1_0.txt or copy at
|
||||||
// http://www.boost.org/LICENSE_1_0.txt)
|
// http://www.boost.org/LICENSE_1_0.txt)
|
||||||
@ -18,8 +18,10 @@
|
|||||||
#include <boost/range/begin.hpp>
|
#include <boost/range/begin.hpp>
|
||||||
#include <boost/range/end.hpp>
|
#include <boost/range/end.hpp>
|
||||||
#include <boost/range/size.hpp>
|
#include <boost/range/size.hpp>
|
||||||
|
#include <boost/range/distance.hpp>
|
||||||
#include <boost/range/empty.hpp>
|
#include <boost/range/empty.hpp>
|
||||||
#include <boost/range/rbegin.hpp>
|
#include <boost/range/rbegin.hpp>
|
||||||
#include <boost/range/rend.hpp>
|
#include <boost/range/rend.hpp>
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
@ -11,118 +11,62 @@
|
|||||||
#ifndef BOOST_RANGE_ITERATOR_HPP
|
#ifndef BOOST_RANGE_ITERATOR_HPP
|
||||||
#define BOOST_RANGE_ITERATOR_HPP
|
#define BOOST_RANGE_ITERATOR_HPP
|
||||||
|
|
||||||
#if defined(_MSC_VER) && (_MSC_VER >= 1200)
|
#if defined(_MSC_VER) && (_MSC_VER >= 1020)
|
||||||
# pragma once
|
# pragma once
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#include <boost/range/config.hpp>
|
#include <boost/range/config.hpp>
|
||||||
|
#include <boost/range/mutable_iterator.hpp>
|
||||||
#ifdef BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION
|
#include <boost/range/const_iterator.hpp>
|
||||||
#include <boost/range/detail/iterator.hpp>
|
#include <boost/type_traits/is_const.hpp>
|
||||||
#else
|
#include <boost/type_traits/remove_const.hpp>
|
||||||
|
#include <boost/mpl/eval_if.hpp>
|
||||||
#include <boost/iterator/iterator_traits.hpp>
|
|
||||||
#include <cstddef>
|
|
||||||
#include <utility>
|
|
||||||
|
|
||||||
namespace boost
|
namespace boost
|
||||||
{
|
{
|
||||||
//////////////////////////////////////////////////////////////////////////
|
|
||||||
// default
|
#if BOOST_WORKAROUND(BOOST_MSVC, == 1310)
|
||||||
//////////////////////////////////////////////////////////////////////////
|
|
||||||
|
namespace range_detail_vc7_1
|
||||||
|
{
|
||||||
|
template< typename C, typename Sig = void(C) >
|
||||||
|
struct range_iterator
|
||||||
|
{
|
||||||
|
typedef BOOST_RANGE_DEDUCED_TYPENAME
|
||||||
|
mpl::eval_if_c< is_const<C>::value,
|
||||||
|
range_const_iterator< typename remove_const<C>::type >,
|
||||||
|
range_mutable_iterator<C> >::type type;
|
||||||
|
};
|
||||||
|
|
||||||
|
template< typename C, typename T >
|
||||||
|
struct range_iterator< C, void(T[]) >
|
||||||
|
{
|
||||||
|
typedef T* type;
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
#endif
|
||||||
|
|
||||||
template< typename C >
|
template< typename C >
|
||||||
struct range_iterator
|
struct range_iterator
|
||||||
{
|
{
|
||||||
typedef BOOST_DEDUCED_TYPENAME C::iterator type;
|
#if BOOST_WORKAROUND(BOOST_MSVC, == 1310)
|
||||||
};
|
|
||||||
|
|
||||||
//////////////////////////////////////////////////////////////////////////
|
typedef BOOST_RANGE_DEDUCED_TYPENAME
|
||||||
// pair
|
range_detail_vc7_1::range_iterator<C>::type type;
|
||||||
//////////////////////////////////////////////////////////////////////////
|
|
||||||
|
|
||||||
template< typename Iterator >
|
#else
|
||||||
struct range_iterator< std::pair<Iterator,Iterator> >
|
|
||||||
{
|
|
||||||
typedef Iterator type;
|
|
||||||
};
|
|
||||||
|
|
||||||
template< typename Iterator >
|
typedef BOOST_RANGE_DEDUCED_TYPENAME
|
||||||
struct range_iterator< const std::pair<Iterator,Iterator> >
|
mpl::eval_if_c< is_const<C>::value,
|
||||||
{
|
range_const_iterator< typename remove_const<C>::type >,
|
||||||
typedef Iterator type;
|
range_mutable_iterator<C> >::type type;
|
||||||
};
|
|
||||||
|
|
||||||
//////////////////////////////////////////////////////////////////////////
|
#endif
|
||||||
// array
|
|
||||||
//////////////////////////////////////////////////////////////////////////
|
|
||||||
|
|
||||||
template< typename T, std::size_t sz >
|
|
||||||
struct range_iterator< T[sz] >
|
|
||||||
{
|
|
||||||
typedef T* type;
|
|
||||||
};
|
|
||||||
|
|
||||||
template< typename T, std::size_t sz >
|
|
||||||
struct range_iterator< const T[sz] >
|
|
||||||
{
|
|
||||||
typedef const T* type;
|
|
||||||
};
|
|
||||||
|
|
||||||
//////////////////////////////////////////////////////////////////////////
|
|
||||||
// string
|
|
||||||
//////////////////////////////////////////////////////////////////////////
|
|
||||||
|
|
||||||
template<>
|
|
||||||
struct range_iterator< char* >
|
|
||||||
{
|
|
||||||
typedef char* type;
|
|
||||||
};
|
|
||||||
|
|
||||||
template<>
|
|
||||||
struct range_iterator< wchar_t* >
|
|
||||||
{
|
|
||||||
typedef wchar_t* type;
|
|
||||||
};
|
|
||||||
|
|
||||||
template<>
|
|
||||||
struct range_iterator< const char* >
|
|
||||||
{
|
|
||||||
typedef const char* type;
|
|
||||||
};
|
|
||||||
|
|
||||||
template<>
|
|
||||||
struct range_iterator< const wchar_t* >
|
|
||||||
{
|
|
||||||
typedef const wchar_t* type;
|
|
||||||
};
|
|
||||||
|
|
||||||
template<>
|
|
||||||
struct range_iterator< char* const >
|
|
||||||
{
|
|
||||||
typedef char* type;
|
|
||||||
};
|
|
||||||
|
|
||||||
template<>
|
|
||||||
struct range_iterator< wchar_t* const >
|
|
||||||
{
|
|
||||||
typedef wchar_t* type;
|
|
||||||
};
|
|
||||||
|
|
||||||
template<>
|
|
||||||
struct range_iterator< const char* const >
|
|
||||||
{
|
|
||||||
typedef const char* type;
|
|
||||||
};
|
|
||||||
|
|
||||||
template<>
|
|
||||||
struct range_iterator< const wchar_t* const >
|
|
||||||
{
|
|
||||||
typedef const wchar_t* type;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
} // namespace boost
|
} // namespace boost
|
||||||
|
|
||||||
#endif // BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION
|
//#endif // BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
@ -23,19 +23,24 @@
|
|||||||
|
|
||||||
#include <boost/detail/workaround.hpp>
|
#include <boost/detail/workaround.hpp>
|
||||||
#include <boost/range/functions.hpp>
|
#include <boost/range/functions.hpp>
|
||||||
#include <boost/range/result_iterator.hpp>
|
#include <boost/range/iterator.hpp>
|
||||||
#include <boost/range/difference_type.hpp>
|
#include <boost/range/difference_type.hpp>
|
||||||
#include <boost/iterator/iterator_traits.hpp>
|
#include <boost/iterator/iterator_traits.hpp>
|
||||||
#include <boost/assert.hpp>
|
#include <boost/assert.hpp>
|
||||||
#include <iterator>
|
#include <iterator>
|
||||||
#include <algorithm>
|
#include <algorithm>
|
||||||
|
#ifndef _STLP_NO_IOSTREAMS
|
||||||
# ifndef BOOST_OLD_IOSTREAMS
|
# ifndef BOOST_OLD_IOSTREAMS
|
||||||
# include <ostream>
|
# include <ostream>
|
||||||
# else
|
# else
|
||||||
# include <ostream.h>
|
# include <ostream.h>
|
||||||
# endif
|
# endif
|
||||||
|
#endif // _STLP_NO_IOSTREAMS
|
||||||
#include <cstddef>
|
#include <cstddef>
|
||||||
|
|
||||||
|
#if BOOST_WORKAROUND(BOOST_MSVC, == 1310) || BOOST_WORKAROUND(BOOST_MSVC, == 1400)
|
||||||
|
#pragma warning( disable : 4996 )
|
||||||
|
#endif
|
||||||
|
|
||||||
/*! \file
|
/*! \file
|
||||||
Defines the \c iterator_class and related functions.
|
Defines the \c iterator_class and related functions.
|
||||||
@ -70,7 +75,7 @@ namespace boost
|
|||||||
template< class Left, class Right >
|
template< class Left, class Right >
|
||||||
inline bool equal( const Left& l, const Right& r )
|
inline bool equal( const Left& l, const Right& r )
|
||||||
{
|
{
|
||||||
typedef BOOST_DEDUCED_TYPENAME boost::range_size<Left>::type sz_type;
|
typedef BOOST_DEDUCED_TYPENAME boost::range_difference<Left>::type sz_type;
|
||||||
|
|
||||||
sz_type l_size = boost::size( l ),
|
sz_type l_size = boost::size( l ),
|
||||||
r_size = boost::size( r );
|
r_size = boost::size( r );
|
||||||
@ -158,61 +163,66 @@ namespace boost
|
|||||||
//! iterator type
|
//! iterator type
|
||||||
typedef IteratorT iterator;
|
typedef IteratorT iterator;
|
||||||
|
|
||||||
iterator_range() : m_Begin( iterator() ), m_End( iterator() ),
|
iterator_range() : m_Begin( iterator() ), m_End( iterator() )
|
||||||
singular( true )
|
#ifndef NDEBUG
|
||||||
{ }
|
, singular( true )
|
||||||
/*
|
#endif
|
||||||
#if BOOST_WORKAROUND(__BORLANDC__, BOOST_TESTED_AT(0x564))
|
|
||||||
iterator_range( this_type r ) :
|
|
||||||
: m_Begin(r.begin()), m_End(r.end())
|
|
||||||
{ }
|
{ }
|
||||||
|
|
||||||
this_type& operator=( this_type r )
|
|
||||||
{
|
|
||||||
m_Begin = r.begin();
|
|
||||||
m_End = r.end();
|
|
||||||
return *this;
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
*/
|
|
||||||
//! Constructor from a pair of iterators
|
//! Constructor from a pair of iterators
|
||||||
template< class Iterator >
|
template< class Iterator >
|
||||||
iterator_range( Iterator Begin, Iterator End ) :
|
iterator_range( Iterator Begin, Iterator End ) :
|
||||||
m_Begin(Begin), m_End(End), singular(false) {}
|
m_Begin(Begin), m_End(End)
|
||||||
|
#ifndef NDEBUG
|
||||||
|
, singular(false)
|
||||||
|
#endif
|
||||||
|
{}
|
||||||
|
|
||||||
//! Constructor from a Range
|
//! Constructor from a Range
|
||||||
template< class Range >
|
template< class Range >
|
||||||
iterator_range( const Range& r ) :
|
iterator_range( const Range& r ) :
|
||||||
m_Begin( impl::adl_begin( r ) ), m_End( impl::adl_end( r ) ),
|
m_Begin( impl::adl_begin( r ) ), m_End( impl::adl_end( r ) )
|
||||||
singular(false) {}
|
#ifndef NDEBUG
|
||||||
|
, singular(false)
|
||||||
|
#endif
|
||||||
|
{}
|
||||||
|
|
||||||
//! Constructor from a Range
|
//! Constructor from a Range
|
||||||
template< class Range >
|
template< class Range >
|
||||||
iterator_range( Range& r ) :
|
iterator_range( Range& r ) :
|
||||||
m_Begin( impl::adl_begin( r ) ), m_End( impl::adl_end( r ) ),
|
m_Begin( impl::adl_begin( r ) ), m_End( impl::adl_end( r ) )
|
||||||
singular(false) {}
|
#ifndef NDEBUG
|
||||||
|
, singular(false)
|
||||||
|
#endif
|
||||||
|
{}
|
||||||
|
|
||||||
//! Constructor from a Range
|
//! Constructor from a Range
|
||||||
template< class Range >
|
template< class Range >
|
||||||
iterator_range( const Range& r, iterator_range_detail::const_range_tag ) :
|
iterator_range( const Range& r, iterator_range_detail::const_range_tag ) :
|
||||||
m_Begin( impl::adl_begin( r ) ), m_End( impl::adl_end( r ) ),
|
m_Begin( impl::adl_begin( r ) ), m_End( impl::adl_end( r ) )
|
||||||
singular(false) {}
|
#ifndef NDEBUG
|
||||||
|
, singular(false)
|
||||||
|
#endif
|
||||||
|
{}
|
||||||
|
|
||||||
//! Constructor from a Range
|
//! Constructor from a Range
|
||||||
template< class Range >
|
template< class Range >
|
||||||
iterator_range( Range& r, iterator_range_detail::range_tag ) :
|
iterator_range( Range& r, iterator_range_detail::range_tag ) :
|
||||||
m_Begin( impl::adl_begin( r ) ), m_End( impl::adl_end( r ) ),
|
m_Begin( impl::adl_begin( r ) ), m_End( impl::adl_end( r ) )
|
||||||
singular(false) {}
|
#ifndef NDEBUG
|
||||||
|
, singular(false)
|
||||||
|
#endif
|
||||||
|
{}
|
||||||
|
|
||||||
#if !BOOST_WORKAROUND(BOOST_MSVC, < 1300)
|
#if !BOOST_WORKAROUND(BOOST_MSVC, < 1300)
|
||||||
this_type& operator=( const this_type& r )
|
this_type& operator=( const this_type& r )
|
||||||
{
|
{
|
||||||
m_Begin = r.begin();
|
m_Begin = r.begin();
|
||||||
m_End = r.end();
|
m_End = r.end();
|
||||||
//
|
|
||||||
// remark: this need not necessarily be true, but it does no harm
|
#ifndef NDEBUG
|
||||||
//
|
|
||||||
singular = r.singular;
|
singular = r.singular;
|
||||||
|
#endif
|
||||||
return *this;
|
return *this;
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
@ -222,10 +232,9 @@ namespace boost
|
|||||||
{
|
{
|
||||||
m_Begin = r.begin();
|
m_Begin = r.begin();
|
||||||
m_End = r.end();
|
m_End = r.end();
|
||||||
//
|
#ifndef NDEBUG
|
||||||
// remark: this need not necessarily be true, but it does no harm
|
singular = r.is_singular();
|
||||||
//
|
#endif
|
||||||
singular = r.empty();
|
|
||||||
return *this;
|
return *this;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -234,7 +243,9 @@ namespace boost
|
|||||||
{
|
{
|
||||||
m_Begin = impl::adl_begin( r );
|
m_Begin = impl::adl_begin( r );
|
||||||
m_End = impl::adl_end( r );
|
m_End = impl::adl_end( r );
|
||||||
|
#ifndef NDEBUG
|
||||||
singular = false;
|
singular = false;
|
||||||
|
#endif
|
||||||
return *this;
|
return *this;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -243,37 +254,33 @@ namespace boost
|
|||||||
{
|
{
|
||||||
m_Begin = impl::adl_begin( r );
|
m_Begin = impl::adl_begin( r );
|
||||||
m_End = impl::adl_end( r );
|
m_End = impl::adl_end( r );
|
||||||
|
#ifndef NDEBUG
|
||||||
singular = false;
|
singular = false;
|
||||||
|
#endif
|
||||||
return *this;
|
return *this;
|
||||||
}
|
}
|
||||||
|
|
||||||
IteratorT begin() const
|
IteratorT begin() const
|
||||||
{
|
{
|
||||||
|
BOOST_ASSERT( !is_singular() );
|
||||||
return m_Begin;
|
return m_Begin;
|
||||||
}
|
}
|
||||||
|
|
||||||
IteratorT end() const
|
IteratorT end() const
|
||||||
{
|
{
|
||||||
|
BOOST_ASSERT( !is_singular() );
|
||||||
return m_End;
|
return m_End;
|
||||||
}
|
}
|
||||||
|
|
||||||
size_type size() const
|
difference_type size() const
|
||||||
{
|
{
|
||||||
if( singular )
|
BOOST_ASSERT( !is_singular() );
|
||||||
return 0;
|
return m_End - m_Begin;
|
||||||
|
|
||||||
#if BOOST_WORKAROUND(__BORLANDC__, BOOST_TESTED_AT(0x582))
|
|
||||||
return std::distance<IteratorT>( m_Begin, m_End );
|
|
||||||
#else
|
|
||||||
return std::distance( m_Begin, m_End );
|
|
||||||
#endif
|
|
||||||
}
|
}
|
||||||
|
|
||||||
bool empty() const
|
bool empty() const
|
||||||
{
|
{
|
||||||
if( singular )
|
BOOST_ASSERT( !is_singular() );
|
||||||
return true;
|
|
||||||
|
|
||||||
return m_Begin == m_End;
|
return m_Begin == m_End;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -292,7 +299,8 @@ namespace boost
|
|||||||
|
|
||||||
bool equal( const iterator_range& r ) const
|
bool equal( const iterator_range& r ) const
|
||||||
{
|
{
|
||||||
return singular == r.singular && m_Begin == r.m_Begin && m_End == r.m_End;
|
BOOST_ASSERT( !is_singular() );
|
||||||
|
return m_Begin == r.m_Begin && m_End == r.m_End;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@ -300,16 +308,19 @@ namespace boost
|
|||||||
|
|
||||||
bool operator==( const iterator_range& r ) const
|
bool operator==( const iterator_range& r ) const
|
||||||
{
|
{
|
||||||
|
BOOST_ASSERT( !is_singular() );
|
||||||
return iterator_range_detail::equal( *this, r );
|
return iterator_range_detail::equal( *this, r );
|
||||||
}
|
}
|
||||||
|
|
||||||
bool operator!=( const iterator_range& r ) const
|
bool operator!=( const iterator_range& r ) const
|
||||||
{
|
{
|
||||||
|
BOOST_ASSERT( !is_singular() );
|
||||||
return !operator==(r);
|
return !operator==(r);
|
||||||
}
|
}
|
||||||
|
|
||||||
bool operator<( const iterator_range& r ) const
|
bool operator<( const iterator_range& r ) const
|
||||||
{
|
{
|
||||||
|
BOOST_ASSERT( !is_singular() );
|
||||||
return iterator_range_detail::less_than( *this, r );
|
return iterator_range_detail::less_than( *this, r );
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -329,21 +340,33 @@ namespace boost
|
|||||||
return *--last;
|
return *--last;
|
||||||
}
|
}
|
||||||
|
|
||||||
reference operator[]( size_type sz ) const
|
reference operator[]( difference_type at ) const
|
||||||
{
|
{
|
||||||
//BOOST_STATIC_ASSERT( is_random_access );
|
BOOST_ASSERT( at >= 0 && at < size() );
|
||||||
BOOST_ASSERT( sz < size() );
|
return m_Begin[at];
|
||||||
return m_Begin[sz];
|
}
|
||||||
|
|
||||||
|
//
|
||||||
|
// When storing transform iterators, operator[]()
|
||||||
|
// fails because it returns by reference. Therefore
|
||||||
|
// operator()() is provided for these cases.
|
||||||
|
//
|
||||||
|
value_type operator()( difference_type at ) const
|
||||||
|
{
|
||||||
|
BOOST_ASSERT( at >= 0 && at < size() );
|
||||||
|
return m_Begin[at];
|
||||||
}
|
}
|
||||||
|
|
||||||
iterator_range& advance_begin( difference_type n )
|
iterator_range& advance_begin( difference_type n )
|
||||||
{
|
{
|
||||||
|
BOOST_ASSERT( !is_singular() );
|
||||||
std::advance( m_Begin, n );
|
std::advance( m_Begin, n );
|
||||||
return *this;
|
return *this;
|
||||||
}
|
}
|
||||||
|
|
||||||
iterator_range& advance_end( difference_type n )
|
iterator_range& advance_end( difference_type n )
|
||||||
{
|
{
|
||||||
|
BOOST_ASSERT( !is_singular() );
|
||||||
std::advance( m_End, n );
|
std::advance( m_End, n );
|
||||||
return *this;
|
return *this;
|
||||||
}
|
}
|
||||||
@ -352,24 +375,30 @@ namespace boost
|
|||||||
// begin and end iterators
|
// begin and end iterators
|
||||||
IteratorT m_Begin;
|
IteratorT m_Begin;
|
||||||
IteratorT m_End;
|
IteratorT m_End;
|
||||||
|
|
||||||
|
#ifndef NDEBUG
|
||||||
bool singular;
|
bool singular;
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#ifndef NDEBUG
|
||||||
|
public:
|
||||||
|
bool is_singular() const
|
||||||
|
{
|
||||||
|
return singular;
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
|
protected:
|
||||||
|
//
|
||||||
|
// Allow subclasses an easy way to access the
|
||||||
|
// base type
|
||||||
|
//
|
||||||
|
typedef iterator_range iterator_range_;
|
||||||
};
|
};
|
||||||
|
|
||||||
// iterator range free-standing operators ---------------------------//
|
// iterator range free-standing operators ---------------------------//
|
||||||
|
|
||||||
#ifdef BOOST_NO_FUNCTION_TEMPLATE_ORDERING
|
#ifndef _STLP_NO_IOSTREAMS
|
||||||
#else
|
|
||||||
template< class Iterator >
|
|
||||||
inline bool empty( const iterator_range<Iterator>& r )
|
|
||||||
{
|
|
||||||
//
|
|
||||||
// this will preserve the well-defined empty() even
|
|
||||||
// though 'r' is singular.
|
|
||||||
//
|
|
||||||
return r.empty();
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
|
|
||||||
# ifndef BOOST_OLD_IOSTREAMS
|
# ifndef BOOST_OLD_IOSTREAMS
|
||||||
|
|
||||||
//! iterator_range output operator
|
//! iterator_range output operator
|
||||||
@ -406,6 +435,7 @@ namespace boost
|
|||||||
}
|
}
|
||||||
|
|
||||||
# endif
|
# endif
|
||||||
|
#endif // _STLP_NO_IOSTREAMS
|
||||||
|
|
||||||
/////////////////////////////////////////////////////////////////////
|
/////////////////////////////////////////////////////////////////////
|
||||||
// comparison operators
|
// comparison operators
|
||||||
@ -500,10 +530,10 @@ namespace boost
|
|||||||
#ifdef BOOST_NO_FUNCTION_TEMPLATE_ORDERING
|
#ifdef BOOST_NO_FUNCTION_TEMPLATE_ORDERING
|
||||||
|
|
||||||
template< typename Range >
|
template< typename Range >
|
||||||
inline iterator_range< BOOST_DEDUCED_TYPENAME range_result_iterator<Range>::type >
|
inline iterator_range< BOOST_DEDUCED_TYPENAME range_iterator<Range>::type >
|
||||||
make_iterator_range( Range& r )
|
make_iterator_range( Range& r )
|
||||||
{
|
{
|
||||||
return iterator_range< BOOST_DEDUCED_TYPENAME range_result_iterator<Range>::type >
|
return iterator_range< BOOST_DEDUCED_TYPENAME range_iterator<Range>::type >
|
||||||
( boost::begin( r ), boost::end( r ) );
|
( boost::begin( r ), boost::end( r ) );
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -522,10 +552,10 @@ namespace boost
|
|||||||
}
|
}
|
||||||
|
|
||||||
template< class ForwardRange >
|
template< class ForwardRange >
|
||||||
inline iterator_range< BOOST_DEDUCED_TYPENAME range_const_iterator<ForwardRange>::type >
|
inline iterator_range< BOOST_DEDUCED_TYPENAME range_iterator<const ForwardRange>::type >
|
||||||
make_iterator_range( const ForwardRange& r )
|
make_iterator_range( const ForwardRange& r )
|
||||||
{
|
{
|
||||||
return iterator_range< BOOST_DEDUCED_TYPENAME range_const_iterator<ForwardRange>::type >
|
return iterator_range< BOOST_DEDUCED_TYPENAME range_iterator<const ForwardRange>::type >
|
||||||
( r, iterator_range_detail::const_range_tag() );
|
( r, iterator_range_detail::const_range_tag() );
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -534,15 +564,19 @@ namespace boost
|
|||||||
namespace iterator_range_detail
|
namespace iterator_range_detail
|
||||||
{
|
{
|
||||||
template< class Range >
|
template< class Range >
|
||||||
inline iterator_range< BOOST_DEDUCED_TYPENAME range_result_iterator<Range>::type >
|
inline iterator_range< BOOST_DEDUCED_TYPENAME range_iterator<Range>::type >
|
||||||
make_range_impl( Range& r,
|
make_range_impl( Range& r,
|
||||||
BOOST_DEDUCED_TYPENAME range_difference<Range>::type advance_begin,
|
BOOST_DEDUCED_TYPENAME range_difference<Range>::type advance_begin,
|
||||||
BOOST_DEDUCED_TYPENAME range_difference<Range>::type advance_end )
|
BOOST_DEDUCED_TYPENAME range_difference<Range>::type advance_end )
|
||||||
{
|
{
|
||||||
if( advance_begin == 0 && advance_end == 0 )
|
//
|
||||||
return make_iterator_range( r );
|
// Not worth the effort
|
||||||
|
//
|
||||||
|
//if( advance_begin == 0 && advance_end == 0 )
|
||||||
|
// return make_iterator_range( r );
|
||||||
|
//
|
||||||
|
|
||||||
BOOST_DEDUCED_TYPENAME range_result_iterator<Range>::type
|
BOOST_DEDUCED_TYPENAME range_iterator<Range>::type
|
||||||
new_begin = boost::begin( r ),
|
new_begin = boost::begin( r ),
|
||||||
new_end = boost::end( r );
|
new_end = boost::end( r );
|
||||||
std::advance( new_begin, advance_begin );
|
std::advance( new_begin, advance_begin );
|
||||||
@ -554,7 +588,7 @@ namespace boost
|
|||||||
#ifdef BOOST_NO_FUNCTION_TEMPLATE_ORDERING
|
#ifdef BOOST_NO_FUNCTION_TEMPLATE_ORDERING
|
||||||
|
|
||||||
template< class Range >
|
template< class Range >
|
||||||
inline iterator_range< BOOST_DEDUCED_TYPENAME range_result_iterator<Range>::type >
|
inline iterator_range< BOOST_DEDUCED_TYPENAME range_iterator<Range>::type >
|
||||||
make_iterator_range( Range& r,
|
make_iterator_range( Range& r,
|
||||||
BOOST_DEDUCED_TYPENAME range_difference<Range>::type advance_begin,
|
BOOST_DEDUCED_TYPENAME range_difference<Range>::type advance_begin,
|
||||||
BOOST_DEDUCED_TYPENAME range_difference<Range>::type advance_end )
|
BOOST_DEDUCED_TYPENAME range_difference<Range>::type advance_end )
|
||||||
@ -576,7 +610,7 @@ namespace boost
|
|||||||
}
|
}
|
||||||
|
|
||||||
template< class Range >
|
template< class Range >
|
||||||
inline iterator_range< BOOST_DEDUCED_TYPENAME range_const_iterator<Range>::type >
|
inline iterator_range< BOOST_DEDUCED_TYPENAME range_iterator<const Range>::type >
|
||||||
make_iterator_range( const Range& r,
|
make_iterator_range( const Range& r,
|
||||||
BOOST_DEDUCED_TYPENAME range_difference<Range>::type advance_begin,
|
BOOST_DEDUCED_TYPENAME range_difference<Range>::type advance_begin,
|
||||||
BOOST_DEDUCED_TYPENAME range_difference<Range>::type advance_end )
|
BOOST_DEDUCED_TYPENAME range_difference<Range>::type advance_end )
|
||||||
@ -606,3 +640,4 @@ namespace boost
|
|||||||
#undef BOOST_OLD_IOSTREAMS
|
#undef BOOST_OLD_IOSTREAMS
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
@ -16,13 +16,15 @@
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
#include <boost/range/iterator.hpp>
|
#include <boost/range/iterator.hpp>
|
||||||
#include <boost/range/const_iterator.hpp>
|
|
||||||
#include <boost/range/value_type.hpp>
|
|
||||||
#include <boost/range/size_type.hpp>
|
|
||||||
#include <boost/range/difference_type.hpp>
|
|
||||||
#include <boost/range/result_iterator.hpp>
|
#include <boost/range/result_iterator.hpp>
|
||||||
#include <boost/range/reverse_iterator.hpp>
|
#include <boost/range/reverse_iterator.hpp>
|
||||||
#include <boost/range/const_reverse_iterator.hpp>
|
#include <boost/range/const_reverse_iterator.hpp>
|
||||||
#include <boost/range/reverse_result_iterator.hpp>
|
#include <boost/range/reverse_result_iterator.hpp>
|
||||||
|
#include <boost/range/value_type.hpp>
|
||||||
|
#include <boost/range/size_type.hpp>
|
||||||
|
#include <boost/range/difference_type.hpp>
|
||||||
|
#include <boost/range/category.hpp>
|
||||||
|
#include <boost/range/reference.hpp>
|
||||||
|
#include <boost/range/pointer.hpp>
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
984
include/boost/range/mfc.hpp
Normal file
984
include/boost/range/mfc.hpp
Normal file
@ -0,0 +1,984 @@
|
|||||||
|
#ifndef BOOST_RANGE_MFC_HPP
|
||||||
|
#define BOOST_RANGE_MFC_HPP
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
// Boost.Range MFC Extension
|
||||||
|
//
|
||||||
|
// Copyright Shunsuke Sogame 2005-2006.
|
||||||
|
// Distributed under the Boost Software License, Version 1.0.
|
||||||
|
// (See accompanying file LICENSE_1_0.txt or copy at
|
||||||
|
// http://www.boost.org/LICENSE_1_0.txt)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
// config
|
||||||
|
//
|
||||||
|
|
||||||
|
|
||||||
|
#include <afx.h> // _MFC_VER
|
||||||
|
|
||||||
|
|
||||||
|
#if !defined(BOOST_RANGE_MFC_NO_CPAIR)
|
||||||
|
#if (_MFC_VER < 0x0700) // dubious
|
||||||
|
#define BOOST_RANGE_MFC_NO_CPAIR
|
||||||
|
#endif
|
||||||
|
#endif
|
||||||
|
|
||||||
|
|
||||||
|
#if !defined(BOOST_RANGE_MFC_HAS_LEGACY_STRING)
|
||||||
|
#if (_MFC_VER < 0x0700) // dubious
|
||||||
|
#define BOOST_RANGE_MFC_HAS_LEGACY_STRING
|
||||||
|
#endif
|
||||||
|
#endif
|
||||||
|
|
||||||
|
|
||||||
|
// A const collection of old MFC doesn't return const reference.
|
||||||
|
//
|
||||||
|
#if !defined(BOOST_RANGE_MFC_CONST_COL_RETURNS_NON_REF)
|
||||||
|
#if (_MFC_VER < 0x0700) // dubious
|
||||||
|
#define BOOST_RANGE_MFC_CONST_COL_RETURNS_NON_REF
|
||||||
|
#endif
|
||||||
|
#endif
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
// forward declarations
|
||||||
|
//
|
||||||
|
|
||||||
|
|
||||||
|
template< class Type, class ArgType >
|
||||||
|
class CArray;
|
||||||
|
|
||||||
|
template< class Type, class ArgType >
|
||||||
|
class CList;
|
||||||
|
|
||||||
|
template< class Key, class ArgKey, class Mapped, class ArgMapped >
|
||||||
|
class CMap;
|
||||||
|
|
||||||
|
template< class BaseClass, class PtrType >
|
||||||
|
class CTypedPtrArray;
|
||||||
|
|
||||||
|
template< class BaseClass, class PtrType >
|
||||||
|
class CTypedPtrList;
|
||||||
|
|
||||||
|
template< class BaseClass, class KeyPtrType, class MappedPtrType >
|
||||||
|
class CTypedPtrMap;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
// extended customizations
|
||||||
|
//
|
||||||
|
|
||||||
|
|
||||||
|
#include <cstddef> // ptrdiff_t
|
||||||
|
#include <utility> // pair
|
||||||
|
#include <boost/assert.hpp>
|
||||||
|
#include <boost/mpl/if.hpp>
|
||||||
|
#include <boost/range/atl.hpp>
|
||||||
|
#include <boost/range/begin.hpp>
|
||||||
|
#include <boost/range/const_iterator.hpp>
|
||||||
|
#include <boost/range/detail/microsoft.hpp>
|
||||||
|
#include <boost/range/end.hpp>
|
||||||
|
#include <boost/iterator/iterator_adaptor.hpp>
|
||||||
|
#include <boost/iterator/iterator_categories.hpp>
|
||||||
|
#include <boost/iterator/iterator_facade.hpp>
|
||||||
|
#include <boost/iterator/transform_iterator.hpp>
|
||||||
|
#include <boost/type_traits/is_const.hpp>
|
||||||
|
#include <boost/type_traits/remove_pointer.hpp>
|
||||||
|
#include <boost/utility/addressof.hpp>
|
||||||
|
#include <afx.h> // legacy CString
|
||||||
|
#include <afxcoll.h> // CXXXArray, CXXXList, CMapXXXToXXX
|
||||||
|
#include <tchar.h>
|
||||||
|
|
||||||
|
|
||||||
|
namespace boost { namespace range_detail_microsoft {
|
||||||
|
|
||||||
|
|
||||||
|
// mfc_ptr_array_iterator
|
||||||
|
//
|
||||||
|
// 'void **' is not convertible to 'void const **',
|
||||||
|
// so we define...
|
||||||
|
//
|
||||||
|
|
||||||
|
template< class ArrayT, class PtrType >
|
||||||
|
struct mfc_ptr_array_iterator;
|
||||||
|
|
||||||
|
template< class ArrayT, class PtrType >
|
||||||
|
struct mfc_ptr_array_iterator_super
|
||||||
|
{
|
||||||
|
typedef iterator_adaptor<
|
||||||
|
mfc_ptr_array_iterator<ArrayT, PtrType>,
|
||||||
|
std::ptrdiff_t, // Base!
|
||||||
|
PtrType, // Value
|
||||||
|
random_access_traversal_tag,
|
||||||
|
use_default,
|
||||||
|
std::ptrdiff_t // Difference
|
||||||
|
> type;
|
||||||
|
};
|
||||||
|
|
||||||
|
template< class ArrayT, class PtrType >
|
||||||
|
struct mfc_ptr_array_iterator :
|
||||||
|
mfc_ptr_array_iterator_super<ArrayT, PtrType>::type
|
||||||
|
{
|
||||||
|
private:
|
||||||
|
typedef mfc_ptr_array_iterator self_t;
|
||||||
|
typedef typename mfc_ptr_array_iterator_super<ArrayT, PtrType>::type super_t;
|
||||||
|
typedef typename super_t::reference ref_t;
|
||||||
|
|
||||||
|
public:
|
||||||
|
explicit mfc_ptr_array_iterator()
|
||||||
|
{ }
|
||||||
|
|
||||||
|
explicit mfc_ptr_array_iterator(ArrayT& arr, INT_PTR index) :
|
||||||
|
super_t(index), m_parr(boost::addressof(arr))
|
||||||
|
{ }
|
||||||
|
|
||||||
|
template< class, class > friend struct mfc_ptr_array_iterator;
|
||||||
|
template< class ArrayT_, class PtrType_ >
|
||||||
|
mfc_ptr_array_iterator(mfc_ptr_array_iterator<ArrayT_, PtrType_> const& other) :
|
||||||
|
super_t(other.base()), m_parr(other.m_parr)
|
||||||
|
{ }
|
||||||
|
|
||||||
|
private:
|
||||||
|
ArrayT *m_parr;
|
||||||
|
|
||||||
|
friend class iterator_core_access;
|
||||||
|
ref_t dereference() const
|
||||||
|
{
|
||||||
|
BOOST_ASSERT(0 <= this->base() && this->base() < m_parr->GetSize() && "out of range");
|
||||||
|
return *( m_parr->GetData() + this->base() );
|
||||||
|
}
|
||||||
|
|
||||||
|
bool equal(self_t const& other) const
|
||||||
|
{
|
||||||
|
BOOST_ASSERT(m_parr == other.m_parr && "iterators incompatible");
|
||||||
|
return this->base() == other.base();
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
struct mfc_ptr_array_functions
|
||||||
|
{
|
||||||
|
template< class Iterator, class X >
|
||||||
|
Iterator begin(X& x)
|
||||||
|
{
|
||||||
|
return Iterator(x, 0);
|
||||||
|
}
|
||||||
|
|
||||||
|
template< class Iterator, class X >
|
||||||
|
Iterator end(X& x)
|
||||||
|
{
|
||||||
|
return Iterator(x, x.GetSize());
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
// arrays
|
||||||
|
//
|
||||||
|
|
||||||
|
template< >
|
||||||
|
struct customization< ::CByteArray > :
|
||||||
|
array_functions
|
||||||
|
{
|
||||||
|
template< class X >
|
||||||
|
struct meta
|
||||||
|
{
|
||||||
|
typedef BYTE val_t;
|
||||||
|
|
||||||
|
typedef val_t *mutable_iterator;
|
||||||
|
typedef val_t const *const_iterator;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
template< >
|
||||||
|
struct customization< ::CDWordArray > :
|
||||||
|
array_functions
|
||||||
|
{
|
||||||
|
template< class X >
|
||||||
|
struct meta
|
||||||
|
{
|
||||||
|
typedef DWORD val_t;
|
||||||
|
|
||||||
|
typedef val_t *mutable_iterator;
|
||||||
|
typedef val_t const *const_iterator;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
template< >
|
||||||
|
struct customization< ::CObArray > :
|
||||||
|
mfc_ptr_array_functions
|
||||||
|
{
|
||||||
|
template< class X >
|
||||||
|
struct meta
|
||||||
|
{
|
||||||
|
typedef mfc_ptr_array_iterator<X, CObject *> mutable_iterator;
|
||||||
|
typedef mfc_ptr_array_iterator<X const, CObject const *> const_iterator;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
template< >
|
||||||
|
struct customization< ::CPtrArray > :
|
||||||
|
mfc_ptr_array_functions
|
||||||
|
{
|
||||||
|
template< class X >
|
||||||
|
struct meta
|
||||||
|
{
|
||||||
|
typedef mfc_ptr_array_iterator<X, void *> mutable_iterator;
|
||||||
|
typedef mfc_ptr_array_iterator<X const, void const *> const_iterator;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
template< >
|
||||||
|
struct customization< ::CStringArray > :
|
||||||
|
array_functions
|
||||||
|
{
|
||||||
|
template< class X >
|
||||||
|
struct meta
|
||||||
|
{
|
||||||
|
typedef ::CString val_t;
|
||||||
|
|
||||||
|
typedef val_t *mutable_iterator;
|
||||||
|
typedef val_t const *const_iterator;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
template< >
|
||||||
|
struct customization< ::CUIntArray > :
|
||||||
|
array_functions
|
||||||
|
{
|
||||||
|
template< class X >
|
||||||
|
struct meta
|
||||||
|
{
|
||||||
|
typedef UINT val_t;
|
||||||
|
|
||||||
|
typedef val_t *mutable_iterator;
|
||||||
|
typedef val_t const *const_iterator;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
template< >
|
||||||
|
struct customization< ::CWordArray > :
|
||||||
|
array_functions
|
||||||
|
{
|
||||||
|
template< class X >
|
||||||
|
struct meta
|
||||||
|
{
|
||||||
|
typedef WORD val_t;
|
||||||
|
|
||||||
|
typedef val_t *mutable_iterator;
|
||||||
|
typedef val_t const *const_iterator;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
// lists
|
||||||
|
//
|
||||||
|
|
||||||
|
template< >
|
||||||
|
struct customization< ::CObList > :
|
||||||
|
list_functions
|
||||||
|
{
|
||||||
|
template< class X >
|
||||||
|
struct meta
|
||||||
|
{
|
||||||
|
typedef list_iterator<X, ::CObject *> mutable_iterator;
|
||||||
|
#if !defined(BOOST_RANGE_MFC_CONST_COL_RETURNS_NON_REF)
|
||||||
|
typedef list_iterator<X const, ::CObject const *> const_iterator;
|
||||||
|
#else
|
||||||
|
typedef list_iterator<X const, ::CObject const * const, ::CObject const * const> const_iterator;
|
||||||
|
#endif
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
template< >
|
||||||
|
struct customization< ::CPtrList > :
|
||||||
|
list_functions
|
||||||
|
{
|
||||||
|
template< class X >
|
||||||
|
struct meta
|
||||||
|
{
|
||||||
|
typedef list_iterator<X, void *> mutable_iterator;
|
||||||
|
#if !defined(BOOST_RANGE_MFC_CONST_COL_RETURNS_NON_REF)
|
||||||
|
typedef list_iterator<X const, void const *> const_iterator;
|
||||||
|
#else
|
||||||
|
typedef list_iterator<X const, void const * const, void const * const> const_iterator;
|
||||||
|
#endif
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
template< >
|
||||||
|
struct customization< ::CStringList > :
|
||||||
|
list_functions
|
||||||
|
{
|
||||||
|
template< class X >
|
||||||
|
struct meta
|
||||||
|
{
|
||||||
|
typedef ::CString val_t;
|
||||||
|
|
||||||
|
typedef list_iterator<X, val_t> mutable_iterator;
|
||||||
|
#if !defined(BOOST_RANGE_MFC_CONST_COL_RETURNS_NON_REF)
|
||||||
|
typedef list_iterator<X const, val_t const> const_iterator;
|
||||||
|
#else
|
||||||
|
typedef list_iterator<X const, val_t const, val_t const> const_iterator;
|
||||||
|
#endif
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
// mfc_map_iterator
|
||||||
|
//
|
||||||
|
|
||||||
|
template< class MapT, class KeyT, class MappedT >
|
||||||
|
struct mfc_map_iterator;
|
||||||
|
|
||||||
|
template< class MapT, class KeyT, class MappedT >
|
||||||
|
struct mfc_map_iterator_super
|
||||||
|
{
|
||||||
|
typedef iterator_facade<
|
||||||
|
mfc_map_iterator<MapT, KeyT, MappedT>,
|
||||||
|
std::pair<KeyT, MappedT>,
|
||||||
|
forward_traversal_tag,
|
||||||
|
std::pair<KeyT, MappedT> const
|
||||||
|
> type;
|
||||||
|
};
|
||||||
|
|
||||||
|
template< class MapT, class KeyT, class MappedT >
|
||||||
|
struct mfc_map_iterator :
|
||||||
|
mfc_map_iterator_super<MapT, KeyT, MappedT>::type
|
||||||
|
{
|
||||||
|
private:
|
||||||
|
typedef mfc_map_iterator self_t;
|
||||||
|
typedef typename mfc_map_iterator_super<MapT, KeyT, MappedT>::type super_t;
|
||||||
|
typedef typename super_t::reference ref_t;
|
||||||
|
|
||||||
|
public:
|
||||||
|
explicit mfc_map_iterator()
|
||||||
|
{ }
|
||||||
|
|
||||||
|
explicit mfc_map_iterator(MapT const& map, POSITION pos) :
|
||||||
|
m_pmap(boost::addressof(map)), m_posNext(pos)
|
||||||
|
{
|
||||||
|
increment();
|
||||||
|
}
|
||||||
|
|
||||||
|
explicit mfc_map_iterator(MapT const& map) :
|
||||||
|
m_pmap(&map), m_pos(0) // end iterator
|
||||||
|
{ }
|
||||||
|
|
||||||
|
template< class, class, class > friend struct mfc_map_iterator;
|
||||||
|
template< class MapT_, class KeyT_, class MappedT_>
|
||||||
|
mfc_map_iterator(mfc_map_iterator<MapT_, KeyT_, MappedT_> const& other) :
|
||||||
|
m_pmap(other.m_pmap),
|
||||||
|
m_pos(other.m_pos), m_posNext(other.m_posNext),
|
||||||
|
m_key(other.m_key), m_mapped(other.m_mapped)
|
||||||
|
{ }
|
||||||
|
|
||||||
|
private:
|
||||||
|
MapT const *m_pmap;
|
||||||
|
POSITION m_pos, m_posNext;
|
||||||
|
KeyT m_key; MappedT m_mapped;
|
||||||
|
|
||||||
|
friend class iterator_core_access;
|
||||||
|
ref_t dereference() const
|
||||||
|
{
|
||||||
|
BOOST_ASSERT(m_pos != 0 && "out of range");
|
||||||
|
return std::make_pair(m_key, m_mapped);
|
||||||
|
}
|
||||||
|
|
||||||
|
void increment()
|
||||||
|
{
|
||||||
|
BOOST_ASSERT(m_pos != 0 && "out of range");
|
||||||
|
|
||||||
|
if (m_posNext == 0) {
|
||||||
|
m_pos = 0;
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
m_pos = m_posNext;
|
||||||
|
m_pmap->GetNextAssoc(m_posNext, m_key, m_mapped);
|
||||||
|
}
|
||||||
|
|
||||||
|
bool equal(self_t const& other) const
|
||||||
|
{
|
||||||
|
BOOST_ASSERT(m_pmap == other.m_pmap && "iterators incompatible");
|
||||||
|
return m_pos == other.m_pos;
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
struct mfc_map_functions
|
||||||
|
{
|
||||||
|
template< class Iterator, class X >
|
||||||
|
Iterator begin(X& x)
|
||||||
|
{
|
||||||
|
return Iterator(x, x.GetStartPosition());
|
||||||
|
}
|
||||||
|
|
||||||
|
template< class Iterator, class X >
|
||||||
|
Iterator end(X& x)
|
||||||
|
{
|
||||||
|
return Iterator(x);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
#if !defined(BOOST_RANGE_MFC_NO_CPAIR)
|
||||||
|
|
||||||
|
|
||||||
|
// mfc_cpair_map_iterator
|
||||||
|
//
|
||||||
|
// used by ::CMap and ::CMapStringToString
|
||||||
|
//
|
||||||
|
|
||||||
|
template< class MapT, class PairT >
|
||||||
|
struct mfc_cpair_map_iterator;
|
||||||
|
|
||||||
|
template< class MapT, class PairT >
|
||||||
|
struct mfc_pget_map_iterator_super
|
||||||
|
{
|
||||||
|
typedef iterator_facade<
|
||||||
|
mfc_cpair_map_iterator<MapT, PairT>,
|
||||||
|
PairT,
|
||||||
|
forward_traversal_tag
|
||||||
|
> type;
|
||||||
|
};
|
||||||
|
|
||||||
|
template< class MapT, class PairT >
|
||||||
|
struct mfc_cpair_map_iterator :
|
||||||
|
mfc_pget_map_iterator_super<MapT, PairT>::type
|
||||||
|
{
|
||||||
|
private:
|
||||||
|
typedef mfc_cpair_map_iterator self_t;
|
||||||
|
typedef typename mfc_pget_map_iterator_super<MapT, PairT>::type super_t;
|
||||||
|
typedef typename super_t::reference ref_t;
|
||||||
|
|
||||||
|
public:
|
||||||
|
explicit mfc_cpair_map_iterator()
|
||||||
|
{ }
|
||||||
|
|
||||||
|
explicit mfc_cpair_map_iterator(MapT& map, PairT *pp) :
|
||||||
|
m_pmap(boost::addressof(map)), m_pp(pp)
|
||||||
|
{ }
|
||||||
|
|
||||||
|
template< class, class > friend struct mfc_cpair_map_iterator;
|
||||||
|
template< class MapT_, class PairT_>
|
||||||
|
mfc_cpair_map_iterator(mfc_cpair_map_iterator<MapT_, PairT_> const& other) :
|
||||||
|
m_pmap(other.m_pmap), m_pp(other.m_pp)
|
||||||
|
{ }
|
||||||
|
|
||||||
|
private:
|
||||||
|
MapT *m_pmap;
|
||||||
|
PairT *m_pp;
|
||||||
|
|
||||||
|
friend class iterator_core_access;
|
||||||
|
ref_t dereference() const
|
||||||
|
{
|
||||||
|
BOOST_ASSERT(m_pp != 0 && "out of range");
|
||||||
|
return *m_pp;
|
||||||
|
}
|
||||||
|
|
||||||
|
void increment()
|
||||||
|
{
|
||||||
|
BOOST_ASSERT(m_pp != 0 && "out of range");
|
||||||
|
m_pp = m_pmap->PGetNextAssoc(m_pp);
|
||||||
|
}
|
||||||
|
|
||||||
|
bool equal(self_t const& other) const
|
||||||
|
{
|
||||||
|
BOOST_ASSERT(m_pmap == other.m_pmap && "iterators incompatible");
|
||||||
|
return m_pp == other.m_pp;
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
struct mfc_cpair_map_functions
|
||||||
|
{
|
||||||
|
template< class Iterator, class X >
|
||||||
|
Iterator begin(X& x)
|
||||||
|
{
|
||||||
|
// Workaround:
|
||||||
|
// Assertion fails if empty.
|
||||||
|
// MFC document is wrong.
|
||||||
|
#if !defined(NDEBUG)
|
||||||
|
if (x.GetCount() == 0)
|
||||||
|
return Iterator(x, 0);
|
||||||
|
#endif
|
||||||
|
|
||||||
|
return Iterator(x, x.PGetFirstAssoc());
|
||||||
|
}
|
||||||
|
|
||||||
|
template< class Iterator, class X >
|
||||||
|
Iterator end(X& x)
|
||||||
|
{
|
||||||
|
return Iterator(x, 0);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
#endif // !defined(BOOST_RANGE_MFC_NO_CPAIR)
|
||||||
|
|
||||||
|
|
||||||
|
// maps
|
||||||
|
//
|
||||||
|
|
||||||
|
template< >
|
||||||
|
struct customization< ::CMapPtrToWord > :
|
||||||
|
mfc_map_functions
|
||||||
|
{
|
||||||
|
template< class X >
|
||||||
|
struct meta
|
||||||
|
{
|
||||||
|
typedef void *key_t;
|
||||||
|
typedef WORD mapped_t;
|
||||||
|
|
||||||
|
typedef mfc_map_iterator<X, key_t, mapped_t> mutable_iterator;
|
||||||
|
typedef mutable_iterator const_iterator;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
template< >
|
||||||
|
struct customization< ::CMapPtrToPtr > :
|
||||||
|
mfc_map_functions
|
||||||
|
{
|
||||||
|
template< class X >
|
||||||
|
struct meta
|
||||||
|
{
|
||||||
|
typedef void *key_t;
|
||||||
|
typedef void *mapped_t;
|
||||||
|
|
||||||
|
typedef mfc_map_iterator<X, key_t, mapped_t> mutable_iterator;
|
||||||
|
typedef mutable_iterator const_iterator;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
template< >
|
||||||
|
struct customization< ::CMapStringToOb > :
|
||||||
|
mfc_map_functions
|
||||||
|
{
|
||||||
|
template< class X >
|
||||||
|
struct meta
|
||||||
|
{
|
||||||
|
typedef ::CString key_t;
|
||||||
|
typedef ::CObject *mapped_t;
|
||||||
|
|
||||||
|
typedef mfc_map_iterator<X, key_t, mapped_t> mutable_iterator;
|
||||||
|
typedef mutable_iterator const_iterator;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
template< >
|
||||||
|
struct customization< ::CMapStringToPtr > :
|
||||||
|
mfc_map_functions
|
||||||
|
{
|
||||||
|
template< class X >
|
||||||
|
struct meta
|
||||||
|
{
|
||||||
|
typedef ::CString key_t;
|
||||||
|
typedef void *mapped_t;
|
||||||
|
|
||||||
|
typedef mfc_map_iterator<X, key_t, mapped_t> mutable_iterator;
|
||||||
|
typedef mutable_iterator const_iterator;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
template< >
|
||||||
|
struct customization< ::CMapStringToString > :
|
||||||
|
#if !defined(BOOST_RANGE_MFC_NO_CPAIR)
|
||||||
|
mfc_cpair_map_functions
|
||||||
|
#else
|
||||||
|
mfc_map_functions
|
||||||
|
#endif
|
||||||
|
{
|
||||||
|
template< class X >
|
||||||
|
struct meta
|
||||||
|
{
|
||||||
|
#if !defined(BOOST_RANGE_MFC_NO_CPAIR)
|
||||||
|
typedef typename X::CPair pair_t;
|
||||||
|
|
||||||
|
typedef mfc_cpair_map_iterator<X, pair_t> mutable_iterator;
|
||||||
|
typedef mfc_cpair_map_iterator<X const, pair_t const> const_iterator;
|
||||||
|
#else
|
||||||
|
typedef ::CString key_t;
|
||||||
|
typedef ::CString mapped_t;
|
||||||
|
|
||||||
|
typedef mfc_map_iterator<X, key_t, mapped_t> mutable_iterator;
|
||||||
|
typedef mutable_iterator const_iterator;
|
||||||
|
#endif
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
template< >
|
||||||
|
struct customization< ::CMapWordToOb > :
|
||||||
|
mfc_map_functions
|
||||||
|
{
|
||||||
|
template< class X >
|
||||||
|
struct meta
|
||||||
|
{
|
||||||
|
typedef WORD key_t;
|
||||||
|
typedef ::CObject *mapped_t;
|
||||||
|
|
||||||
|
typedef mfc_map_iterator<X, key_t, mapped_t> mutable_iterator;
|
||||||
|
typedef mutable_iterator const_iterator;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
template< >
|
||||||
|
struct customization< ::CMapWordToPtr > :
|
||||||
|
mfc_map_functions
|
||||||
|
{
|
||||||
|
template< class X >
|
||||||
|
struct meta
|
||||||
|
{
|
||||||
|
typedef WORD key_t;
|
||||||
|
typedef void *mapped_t;
|
||||||
|
|
||||||
|
typedef mfc_map_iterator<X, key_t, mapped_t> mutable_iterator;
|
||||||
|
typedef mutable_iterator const_iterator;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
// templates
|
||||||
|
//
|
||||||
|
|
||||||
|
template< class Type, class ArgType >
|
||||||
|
struct customization< ::CArray<Type, ArgType> > :
|
||||||
|
array_functions
|
||||||
|
{
|
||||||
|
template< class X >
|
||||||
|
struct meta
|
||||||
|
{
|
||||||
|
typedef Type val_t;
|
||||||
|
|
||||||
|
typedef val_t *mutable_iterator;
|
||||||
|
typedef val_t const *const_iterator;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
template< class Type, class ArgType >
|
||||||
|
struct customization< ::CList<Type, ArgType> > :
|
||||||
|
list_functions
|
||||||
|
{
|
||||||
|
template< class X >
|
||||||
|
struct meta
|
||||||
|
{
|
||||||
|
typedef Type val_t;
|
||||||
|
|
||||||
|
typedef list_iterator<X, val_t> mutable_iterator;
|
||||||
|
#if !defined(BOOST_RANGE_MFC_CONST_COL_RETURNS_NON_REF)
|
||||||
|
typedef list_iterator<X const, val_t const> const_iterator;
|
||||||
|
#else
|
||||||
|
typedef list_iterator<X const, val_t const, val_t const> const_iterator;
|
||||||
|
#endif
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
template< class Key, class ArgKey, class Mapped, class ArgMapped >
|
||||||
|
struct customization< ::CMap<Key, ArgKey, Mapped, ArgMapped> > :
|
||||||
|
#if !defined(BOOST_RANGE_MFC_NO_CPAIR)
|
||||||
|
mfc_cpair_map_functions
|
||||||
|
#else
|
||||||
|
mfc_map_functions
|
||||||
|
#endif
|
||||||
|
{
|
||||||
|
template< class X >
|
||||||
|
struct meta
|
||||||
|
{
|
||||||
|
#if !defined(BOOST_RANGE_MFC_NO_CPAIR)
|
||||||
|
typedef typename X::CPair pair_t;
|
||||||
|
|
||||||
|
typedef mfc_cpair_map_iterator<X, pair_t> mutable_iterator;
|
||||||
|
typedef mfc_cpair_map_iterator<X const, pair_t const> const_iterator;
|
||||||
|
#else
|
||||||
|
typedef Key key_t;
|
||||||
|
typedef Mapped mapped_t;
|
||||||
|
|
||||||
|
typedef mfc_map_iterator<X, key_t, mapped_t> mutable_iterator;
|
||||||
|
typedef mutable_iterator const_iterator;
|
||||||
|
#endif
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
template< class BaseClass, class PtrType >
|
||||||
|
struct customization< ::CTypedPtrArray<BaseClass, PtrType> >
|
||||||
|
{
|
||||||
|
template< class X >
|
||||||
|
struct fun
|
||||||
|
{
|
||||||
|
typedef typename remove_pointer<PtrType>::type val_t;
|
||||||
|
|
||||||
|
typedef typename mpl::if_< is_const<X>,
|
||||||
|
val_t const,
|
||||||
|
val_t
|
||||||
|
>::type val_t_;
|
||||||
|
|
||||||
|
typedef val_t_ * const result_type;
|
||||||
|
|
||||||
|
template< class PtrType_ >
|
||||||
|
result_type operator()(PtrType_ p) const
|
||||||
|
{
|
||||||
|
return static_cast<result_type>(p);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
template< class X >
|
||||||
|
struct meta
|
||||||
|
{
|
||||||
|
typedef typename compatible_mutable_iterator<BaseClass>::type miter_t;
|
||||||
|
typedef typename range_const_iterator<BaseClass>::type citer_t;
|
||||||
|
|
||||||
|
typedef transform_iterator<fun<X>, miter_t> mutable_iterator;
|
||||||
|
typedef transform_iterator<fun<X const>, citer_t> const_iterator;
|
||||||
|
};
|
||||||
|
|
||||||
|
template< class Iterator, class X >
|
||||||
|
Iterator begin(X& x)
|
||||||
|
{
|
||||||
|
return Iterator(boost::begin<BaseClass>(x), fun<X>());
|
||||||
|
}
|
||||||
|
|
||||||
|
template< class Iterator, class X >
|
||||||
|
Iterator end(X& x)
|
||||||
|
{
|
||||||
|
return Iterator(boost::end<BaseClass>(x), fun<X>());
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
template< class BaseClass, class PtrType >
|
||||||
|
struct customization< ::CTypedPtrList<BaseClass, PtrType> > :
|
||||||
|
list_functions
|
||||||
|
{
|
||||||
|
template< class X >
|
||||||
|
struct meta
|
||||||
|
{
|
||||||
|
typedef typename remove_pointer<PtrType>::type val_t;
|
||||||
|
|
||||||
|
// not l-value
|
||||||
|
typedef list_iterator<X, val_t * const, val_t * const> mutable_iterator;
|
||||||
|
typedef list_iterator<X const, val_t const * const, val_t const * const> const_iterator;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
template< class BaseClass, class KeyPtrType, class MappedPtrType >
|
||||||
|
struct customization< ::CTypedPtrMap<BaseClass, KeyPtrType, MappedPtrType> > :
|
||||||
|
mfc_map_functions
|
||||||
|
{
|
||||||
|
template< class X >
|
||||||
|
struct meta
|
||||||
|
{
|
||||||
|
typedef mfc_map_iterator<X, KeyPtrType, MappedPtrType> mutable_iterator;
|
||||||
|
typedef mutable_iterator const_iterator;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
// strings
|
||||||
|
//
|
||||||
|
|
||||||
|
#if defined(BOOST_RANGE_MFC_HAS_LEGACY_STRING)
|
||||||
|
|
||||||
|
template< >
|
||||||
|
struct customization< ::CString >
|
||||||
|
{
|
||||||
|
template< class X >
|
||||||
|
struct meta
|
||||||
|
{
|
||||||
|
// LPTSTR/LPCTSTR is not always defined in <tchar.h>.
|
||||||
|
typedef TCHAR *mutable_iterator;
|
||||||
|
typedef TCHAR const *const_iterator;
|
||||||
|
};
|
||||||
|
|
||||||
|
template< class Iterator, class X >
|
||||||
|
typename mutable_<Iterator, X>::type begin(X& x)
|
||||||
|
{
|
||||||
|
return x.GetBuffer(0);
|
||||||
|
}
|
||||||
|
|
||||||
|
template< class Iterator, class X >
|
||||||
|
Iterator begin(X const& x)
|
||||||
|
{
|
||||||
|
return x;
|
||||||
|
}
|
||||||
|
|
||||||
|
template< class Iterator, class X >
|
||||||
|
Iterator end(X& x)
|
||||||
|
{
|
||||||
|
return begin<Iterator>(x) + x.GetLength();
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
#endif // defined(BOOST_RANGE_MFC_HAS_LEGACY_STRING)
|
||||||
|
|
||||||
|
|
||||||
|
} } // namespace boost::range_detail_microsoft
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
// range customizations
|
||||||
|
//
|
||||||
|
|
||||||
|
|
||||||
|
// arrays
|
||||||
|
//
|
||||||
|
BOOST_RANGE_DETAIL_MICROSOFT_CUSTOMIZATION_TYPE(
|
||||||
|
boost::range_detail_microsoft::using_type_as_tag,
|
||||||
|
BOOST_PP_NIL, CByteArray
|
||||||
|
)
|
||||||
|
|
||||||
|
BOOST_RANGE_DETAIL_MICROSOFT_CUSTOMIZATION_TYPE(
|
||||||
|
boost::range_detail_microsoft::using_type_as_tag,
|
||||||
|
BOOST_PP_NIL, CDWordArray
|
||||||
|
)
|
||||||
|
|
||||||
|
BOOST_RANGE_DETAIL_MICROSOFT_CUSTOMIZATION_TYPE(
|
||||||
|
boost::range_detail_microsoft::using_type_as_tag,
|
||||||
|
BOOST_PP_NIL, CStringArray
|
||||||
|
)
|
||||||
|
|
||||||
|
BOOST_RANGE_DETAIL_MICROSOFT_CUSTOMIZATION_TYPE(
|
||||||
|
boost::range_detail_microsoft::using_type_as_tag,
|
||||||
|
BOOST_PP_NIL, CUIntArray
|
||||||
|
)
|
||||||
|
|
||||||
|
BOOST_RANGE_DETAIL_MICROSOFT_CUSTOMIZATION_TYPE(
|
||||||
|
boost::range_detail_microsoft::using_type_as_tag,
|
||||||
|
BOOST_PP_NIL, CWordArray
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
// lists
|
||||||
|
//
|
||||||
|
BOOST_RANGE_DETAIL_MICROSOFT_CUSTOMIZATION_TYPE(
|
||||||
|
boost::range_detail_microsoft::using_type_as_tag,
|
||||||
|
BOOST_PP_NIL, CObList
|
||||||
|
)
|
||||||
|
|
||||||
|
BOOST_RANGE_DETAIL_MICROSOFT_CUSTOMIZATION_TYPE(
|
||||||
|
boost::range_detail_microsoft::using_type_as_tag,
|
||||||
|
BOOST_PP_NIL, CPtrList
|
||||||
|
)
|
||||||
|
|
||||||
|
BOOST_RANGE_DETAIL_MICROSOFT_CUSTOMIZATION_TYPE(
|
||||||
|
boost::range_detail_microsoft::using_type_as_tag,
|
||||||
|
BOOST_PP_NIL, CStringList
|
||||||
|
)
|
||||||
|
|
||||||
|
BOOST_RANGE_DETAIL_MICROSOFT_CUSTOMIZATION_TYPE(
|
||||||
|
boost::range_detail_microsoft::using_type_as_tag,
|
||||||
|
BOOST_PP_NIL, CObArray
|
||||||
|
)
|
||||||
|
|
||||||
|
BOOST_RANGE_DETAIL_MICROSOFT_CUSTOMIZATION_TYPE(
|
||||||
|
boost::range_detail_microsoft::using_type_as_tag,
|
||||||
|
BOOST_PP_NIL, CPtrArray
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
// maps
|
||||||
|
//
|
||||||
|
BOOST_RANGE_DETAIL_MICROSOFT_CUSTOMIZATION_TYPE(
|
||||||
|
boost::range_detail_microsoft::using_type_as_tag,
|
||||||
|
BOOST_PP_NIL, CMapPtrToWord
|
||||||
|
)
|
||||||
|
|
||||||
|
BOOST_RANGE_DETAIL_MICROSOFT_CUSTOMIZATION_TYPE(
|
||||||
|
boost::range_detail_microsoft::using_type_as_tag,
|
||||||
|
BOOST_PP_NIL, CMapPtrToPtr
|
||||||
|
)
|
||||||
|
|
||||||
|
BOOST_RANGE_DETAIL_MICROSOFT_CUSTOMIZATION_TYPE(
|
||||||
|
boost::range_detail_microsoft::using_type_as_tag,
|
||||||
|
BOOST_PP_NIL, CMapStringToOb
|
||||||
|
)
|
||||||
|
|
||||||
|
BOOST_RANGE_DETAIL_MICROSOFT_CUSTOMIZATION_TYPE(
|
||||||
|
boost::range_detail_microsoft::using_type_as_tag,
|
||||||
|
BOOST_PP_NIL, CMapStringToPtr
|
||||||
|
)
|
||||||
|
|
||||||
|
BOOST_RANGE_DETAIL_MICROSOFT_CUSTOMIZATION_TYPE(
|
||||||
|
boost::range_detail_microsoft::using_type_as_tag,
|
||||||
|
BOOST_PP_NIL, CMapStringToString
|
||||||
|
)
|
||||||
|
|
||||||
|
BOOST_RANGE_DETAIL_MICROSOFT_CUSTOMIZATION_TYPE(
|
||||||
|
boost::range_detail_microsoft::using_type_as_tag,
|
||||||
|
BOOST_PP_NIL, CMapWordToOb
|
||||||
|
)
|
||||||
|
|
||||||
|
BOOST_RANGE_DETAIL_MICROSOFT_CUSTOMIZATION_TYPE(
|
||||||
|
boost::range_detail_microsoft::using_type_as_tag,
|
||||||
|
BOOST_PP_NIL, CMapWordToPtr
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
// templates
|
||||||
|
//
|
||||||
|
BOOST_RANGE_DETAIL_MICROSOFT_CUSTOMIZATION_TEMPLATE(
|
||||||
|
boost::range_detail_microsoft::using_type_as_tag,
|
||||||
|
BOOST_PP_NIL, CArray, 2
|
||||||
|
)
|
||||||
|
|
||||||
|
BOOST_RANGE_DETAIL_MICROSOFT_CUSTOMIZATION_TEMPLATE(
|
||||||
|
boost::range_detail_microsoft::using_type_as_tag,
|
||||||
|
BOOST_PP_NIL, CList, 2
|
||||||
|
)
|
||||||
|
|
||||||
|
BOOST_RANGE_DETAIL_MICROSOFT_CUSTOMIZATION_TEMPLATE(
|
||||||
|
boost::range_detail_microsoft::using_type_as_tag,
|
||||||
|
BOOST_PP_NIL, CMap, 4
|
||||||
|
)
|
||||||
|
|
||||||
|
BOOST_RANGE_DETAIL_MICROSOFT_CUSTOMIZATION_TEMPLATE(
|
||||||
|
boost::range_detail_microsoft::using_type_as_tag,
|
||||||
|
BOOST_PP_NIL, CTypedPtrArray, 2
|
||||||
|
)
|
||||||
|
|
||||||
|
BOOST_RANGE_DETAIL_MICROSOFT_CUSTOMIZATION_TEMPLATE(
|
||||||
|
boost::range_detail_microsoft::using_type_as_tag,
|
||||||
|
BOOST_PP_NIL, CTypedPtrList, 2
|
||||||
|
)
|
||||||
|
|
||||||
|
BOOST_RANGE_DETAIL_MICROSOFT_CUSTOMIZATION_TEMPLATE(
|
||||||
|
boost::range_detail_microsoft::using_type_as_tag,
|
||||||
|
BOOST_PP_NIL, CTypedPtrMap, 3
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
// strings
|
||||||
|
//
|
||||||
|
#if defined(BOOST_RANGE_MFC_HAS_LEGACY_STRING)
|
||||||
|
|
||||||
|
BOOST_RANGE_DETAIL_MICROSOFT_CUSTOMIZATION_TYPE(
|
||||||
|
boost::range_detail_microsoft::using_type_as_tag,
|
||||||
|
BOOST_PP_NIL, CString
|
||||||
|
)
|
||||||
|
|
||||||
|
#endif
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
#endif
|
64
include/boost/range/mutable_iterator.hpp
Executable file
64
include/boost/range/mutable_iterator.hpp
Executable file
@ -0,0 +1,64 @@
|
|||||||
|
// Boost.Range library
|
||||||
|
//
|
||||||
|
// Copyright Thorsten Ottosen 2003-2004. Use, modification and
|
||||||
|
// distribution is subject to the Boost Software License, Version
|
||||||
|
// 1.0. (See accompanying file LICENSE_1_0.txt or copy at
|
||||||
|
// http://www.boost.org/LICENSE_1_0.txt)
|
||||||
|
//
|
||||||
|
// For more information, see http://www.boost.org/libs/range/
|
||||||
|
//
|
||||||
|
|
||||||
|
#ifndef BOOST_RANGE_MUTABLE_ITERATOR_HPP
|
||||||
|
#define BOOST_RANGE_MUTABLE_ITERATOR_HPP
|
||||||
|
|
||||||
|
#if defined(_MSC_VER) && (_MSC_VER >= 1200)
|
||||||
|
# pragma once
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#include <boost/range/config.hpp>
|
||||||
|
|
||||||
|
#ifdef BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION
|
||||||
|
#include <boost/range/detail/iterator.hpp>
|
||||||
|
#else
|
||||||
|
|
||||||
|
#include <boost/iterator/iterator_traits.hpp>
|
||||||
|
#include <cstddef>
|
||||||
|
#include <utility>
|
||||||
|
|
||||||
|
namespace boost
|
||||||
|
{
|
||||||
|
//////////////////////////////////////////////////////////////////////////
|
||||||
|
// default
|
||||||
|
//////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
|
template< typename C >
|
||||||
|
struct range_mutable_iterator
|
||||||
|
{
|
||||||
|
typedef BOOST_DEDUCED_TYPENAME C::iterator type;
|
||||||
|
};
|
||||||
|
|
||||||
|
//////////////////////////////////////////////////////////////////////////
|
||||||
|
// pair
|
||||||
|
//////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
|
template< typename Iterator >
|
||||||
|
struct range_mutable_iterator< std::pair<Iterator,Iterator> >
|
||||||
|
{
|
||||||
|
typedef Iterator type;
|
||||||
|
};
|
||||||
|
|
||||||
|
//////////////////////////////////////////////////////////////////////////
|
||||||
|
// array
|
||||||
|
//////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
|
template< typename T, std::size_t sz >
|
||||||
|
struct range_mutable_iterator< T[sz] >
|
||||||
|
{
|
||||||
|
typedef T* type;
|
||||||
|
};
|
||||||
|
|
||||||
|
} // namespace boost
|
||||||
|
|
||||||
|
#endif // BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION
|
||||||
|
|
||||||
|
#endif
|
29
include/boost/range/pointer.hpp
Executable file
29
include/boost/range/pointer.hpp
Executable file
@ -0,0 +1,29 @@
|
|||||||
|
// Boost.Range library
|
||||||
|
//
|
||||||
|
// Copyright Thorsten Ottosen 2003-2006. Use, modification and
|
||||||
|
// distribution is subject to the Boost Software License, Version
|
||||||
|
// 1.0. (See accompanying file LICENSE_1_0.txt or copy at
|
||||||
|
// http://www.boost.org/LICENSE_1_0.txt)
|
||||||
|
//
|
||||||
|
// For more information, see http://www.boost.org/libs/range/
|
||||||
|
//
|
||||||
|
|
||||||
|
#ifndef BOOST_RANGE_POINTER_TYPE_HPP
|
||||||
|
#define BOOST_RANGE_POINTER_TYPE_HPP
|
||||||
|
|
||||||
|
#if defined(_MSC_VER) && (_MSC_VER >= 1200)
|
||||||
|
# pragma once
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#include <boost/range/config.hpp>
|
||||||
|
#include <boost/range/iterator.hpp>
|
||||||
|
#include <boost/iterator/iterator_traits.hpp>
|
||||||
|
|
||||||
|
namespace boost
|
||||||
|
{
|
||||||
|
template< class T >
|
||||||
|
struct range_pointer : iterator_pointer< typename range_iterator<T>::type >
|
||||||
|
{ };
|
||||||
|
}
|
||||||
|
|
||||||
|
#endif
|
@ -16,9 +16,7 @@
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
#include <boost/range/end.hpp>
|
#include <boost/range/end.hpp>
|
||||||
#include <boost/range/reverse_result_iterator.hpp>
|
|
||||||
#include <boost/range/reverse_iterator.hpp>
|
#include <boost/range/reverse_iterator.hpp>
|
||||||
#include <boost/range/const_reverse_iterator.hpp>
|
|
||||||
|
|
||||||
namespace boost
|
namespace boost
|
||||||
{
|
{
|
||||||
@ -26,30 +24,28 @@ namespace boost
|
|||||||
#ifdef BOOST_NO_FUNCTION_TEMPLATE_ORDERING
|
#ifdef BOOST_NO_FUNCTION_TEMPLATE_ORDERING
|
||||||
|
|
||||||
template< class C >
|
template< class C >
|
||||||
inline BOOST_DEDUCED_TYPENAME range_reverse_result_iterator<C>::type
|
inline BOOST_DEDUCED_TYPENAME range_reverse_iterator<C>::type
|
||||||
rbegin( C& c )
|
rbegin( C& c )
|
||||||
{
|
{
|
||||||
return BOOST_DEDUCED_TYPENAME range_reverse_result_iterator<C>::type( end( c ) );
|
return BOOST_DEDUCED_TYPENAME range_reverse_iterator<C>::type( boost::end( c ) );
|
||||||
}
|
}
|
||||||
|
|
||||||
#else
|
#else
|
||||||
|
|
||||||
template< class C >
|
template< class C >
|
||||||
inline BOOST_DEDUCED_TYPENAME range_reverse_iterator<
|
inline BOOST_DEDUCED_TYPENAME range_reverse_iterator<C>::type
|
||||||
typename remove_const<C>::type >::type
|
|
||||||
rbegin( C& c )
|
rbegin( C& c )
|
||||||
{
|
{
|
||||||
typedef BOOST_DEDUCED_TYPENAME range_reverse_iterator<
|
typedef BOOST_DEDUCED_TYPENAME range_reverse_iterator<C>::type
|
||||||
typename remove_const<C>::type >::type
|
|
||||||
iter_type;
|
iter_type;
|
||||||
return iter_type( boost::end( c ) );
|
return iter_type( boost::end( c ) );
|
||||||
}
|
}
|
||||||
|
|
||||||
template< class C >
|
template< class C >
|
||||||
inline BOOST_DEDUCED_TYPENAME range_const_reverse_iterator<C>::type
|
inline BOOST_DEDUCED_TYPENAME range_reverse_iterator<const C>::type
|
||||||
rbegin( const C& c )
|
rbegin( const C& c )
|
||||||
{
|
{
|
||||||
typedef BOOST_DEDUCED_TYPENAME range_const_reverse_iterator<C>::type
|
typedef BOOST_DEDUCED_TYPENAME range_reverse_iterator<const C>::type
|
||||||
iter_type;
|
iter_type;
|
||||||
return iter_type( boost::end( c ) );
|
return iter_type( boost::end( c ) );
|
||||||
}
|
}
|
||||||
@ -57,7 +53,7 @@ rbegin( const C& c )
|
|||||||
#endif // BOOST_NO_FUNCTION_TEMPLATE_ORDERING
|
#endif // BOOST_NO_FUNCTION_TEMPLATE_ORDERING
|
||||||
|
|
||||||
template< class T >
|
template< class T >
|
||||||
inline BOOST_DEDUCED_TYPENAME range_const_reverse_iterator<T>::type
|
inline BOOST_DEDUCED_TYPENAME range_reverse_iterator<const T>::type
|
||||||
const_rbegin( const T& r )
|
const_rbegin( const T& r )
|
||||||
{
|
{
|
||||||
return boost::rbegin( r );
|
return boost::rbegin( r );
|
||||||
@ -66,3 +62,4 @@ const_rbegin( const T& r )
|
|||||||
} // namespace 'boost'
|
} // namespace 'boost'
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
29
include/boost/range/reference.hpp
Executable file
29
include/boost/range/reference.hpp
Executable file
@ -0,0 +1,29 @@
|
|||||||
|
// Boost.Range library
|
||||||
|
//
|
||||||
|
// Copyright Thorsten Ottosen 2003-2004. Use, modification and
|
||||||
|
// distribution is subject to the Boost Software License, Version
|
||||||
|
// 1.0. (See accompanying file LICENSE_1_0.txt or copy at
|
||||||
|
// http://www.boost.org/LICENSE_1_0.txt)
|
||||||
|
//
|
||||||
|
// For more information, see http://www.boost.org/libs/range/
|
||||||
|
//
|
||||||
|
|
||||||
|
#ifndef BOOST_RANGE_REFERENCE_TYPE_HPP
|
||||||
|
#define BOOST_RANGE_REFERENCE_TYPE_HPP
|
||||||
|
|
||||||
|
#if defined(_MSC_VER) && (_MSC_VER >= 1200)
|
||||||
|
# pragma once
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#include <boost/range/config.hpp>
|
||||||
|
#include <boost/range/iterator.hpp>
|
||||||
|
#include <boost/iterator/iterator_traits.hpp>
|
||||||
|
|
||||||
|
namespace boost
|
||||||
|
{
|
||||||
|
template< class T >
|
||||||
|
struct range_reference : iterator_reference< typename range_iterator<T>::type >
|
||||||
|
{ };
|
||||||
|
}
|
||||||
|
|
||||||
|
#endif
|
@ -16,9 +16,7 @@
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
#include <boost/range/begin.hpp>
|
#include <boost/range/begin.hpp>
|
||||||
#include <boost/range/reverse_result_iterator.hpp>
|
|
||||||
#include <boost/range/reverse_iterator.hpp>
|
#include <boost/range/reverse_iterator.hpp>
|
||||||
#include <boost/range/const_reverse_iterator.hpp>
|
|
||||||
|
|
||||||
namespace boost
|
namespace boost
|
||||||
{
|
{
|
||||||
@ -26,30 +24,28 @@ namespace boost
|
|||||||
#ifdef BOOST_NO_FUNCTION_TEMPLATE_ORDERING
|
#ifdef BOOST_NO_FUNCTION_TEMPLATE_ORDERING
|
||||||
|
|
||||||
template< class C >
|
template< class C >
|
||||||
inline BOOST_DEDUCED_TYPENAME range_reverse_result_iterator<C>::type
|
inline BOOST_DEDUCED_TYPENAME range_reverse_iterator<C>::type
|
||||||
rend( C& c )
|
rend( C& c )
|
||||||
{
|
{
|
||||||
return BOOST_DEDUCED_TYPENAME range_reverse_result_iterator<C>::type( boost::begin( c ) );
|
return BOOST_DEDUCED_TYPENAME range_reverse_iterator<C>::type( boost::begin( c ) );
|
||||||
}
|
}
|
||||||
|
|
||||||
#else
|
#else
|
||||||
|
|
||||||
template< class C >
|
template< class C >
|
||||||
inline BOOST_DEDUCED_TYPENAME range_reverse_iterator<
|
inline BOOST_DEDUCED_TYPENAME range_reverse_iterator<C>::type
|
||||||
typename remove_const<C>::type >::type
|
|
||||||
rend( C& c )
|
rend( C& c )
|
||||||
{
|
{
|
||||||
typedef BOOST_DEDUCED_TYPENAME range_reverse_iterator<
|
typedef BOOST_DEDUCED_TYPENAME range_reverse_iterator<C>::type
|
||||||
typename remove_const<C>::type >::type
|
|
||||||
iter_type;
|
iter_type;
|
||||||
return iter_type( boost::begin( c ) );
|
return iter_type( boost::begin( c ) );
|
||||||
}
|
}
|
||||||
|
|
||||||
template< class C >
|
template< class C >
|
||||||
inline BOOST_DEDUCED_TYPENAME range_const_reverse_iterator<C>::type
|
inline BOOST_DEDUCED_TYPENAME range_reverse_iterator<const C>::type
|
||||||
rend( const C& c )
|
rend( const C& c )
|
||||||
{
|
{
|
||||||
typedef BOOST_DEDUCED_TYPENAME range_const_reverse_iterator<C>::type
|
typedef BOOST_DEDUCED_TYPENAME range_reverse_iterator<const C>::type
|
||||||
iter_type;
|
iter_type;
|
||||||
return iter_type( boost::begin( c ) );
|
return iter_type( boost::begin( c ) );
|
||||||
}
|
}
|
||||||
@ -57,7 +53,7 @@ rend( const C& c )
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
template< class T >
|
template< class T >
|
||||||
inline BOOST_DEDUCED_TYPENAME range_const_reverse_iterator<T>::type
|
inline BOOST_DEDUCED_TYPENAME range_reverse_iterator<const T>::type
|
||||||
const_rend( const T& r )
|
const_rend( const T& r )
|
||||||
{
|
{
|
||||||
return boost::rend( r );
|
return boost::rend( r );
|
||||||
@ -66,3 +62,4 @@ const_rend( const T& r )
|
|||||||
} // namespace 'boost'
|
} // namespace 'boost'
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
@ -15,29 +15,19 @@
|
|||||||
# pragma once
|
# pragma once
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#include <boost/range/config.hpp>
|
|
||||||
#include <boost/range/iterator.hpp>
|
#include <boost/range/iterator.hpp>
|
||||||
#include <boost/range/const_iterator.hpp>
|
|
||||||
#include <boost/type_traits/is_const.hpp>
|
|
||||||
#include <boost/mpl/if.hpp>
|
|
||||||
|
|
||||||
namespace boost
|
namespace boost
|
||||||
{
|
{
|
||||||
//////////////////////////////////////////////////////////////////////////
|
//
|
||||||
// default
|
// This interface is deprecated, use range_iterator<T>
|
||||||
//////////////////////////////////////////////////////////////////////////
|
//
|
||||||
|
|
||||||
template< typename C >
|
template< typename C >
|
||||||
struct range_result_iterator
|
struct range_result_iterator : range_iterator<C>
|
||||||
{
|
{ };
|
||||||
typedef BOOST_RANGE_DEDUCED_TYPENAME
|
|
||||||
mpl::if_< BOOST_DEDUCED_TYPENAME is_const<C>::type,
|
|
||||||
BOOST_DEDUCED_TYPENAME range_const_iterator<C>::type,
|
|
||||||
BOOST_DEDUCED_TYPENAME range_iterator<C>::type >::type type;
|
|
||||||
};
|
|
||||||
|
|
||||||
} // namespace boost
|
} // namespace boost
|
||||||
|
|
||||||
//#endif // BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION
|
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
@ -15,22 +15,17 @@
|
|||||||
# pragma once
|
# pragma once
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#include <boost/range/config.hpp>
|
#include <boost/range/reverse_iterator.hpp>
|
||||||
#include <boost/range/result_iterator.hpp>
|
|
||||||
#include <boost/iterator/reverse_iterator.hpp>
|
|
||||||
|
|
||||||
namespace boost
|
namespace boost
|
||||||
{
|
{
|
||||||
//////////////////////////////////////////////////////////////////////////
|
//
|
||||||
// default
|
// This interface is deprecated, use range_reverse_iterator<T>
|
||||||
//////////////////////////////////////////////////////////////////////////
|
//
|
||||||
|
|
||||||
template< typename C >
|
template< typename C >
|
||||||
struct range_reverse_result_iterator
|
struct range_reverse_result_iterator : range_reverse_iterator<C>
|
||||||
{
|
{ };
|
||||||
typedef reverse_iterator<
|
|
||||||
BOOST_RANGE_DEDUCED_TYPENAME range_result_iterator<C>::type > type;
|
|
||||||
};
|
|
||||||
|
|
||||||
} // namespace boost
|
} // namespace boost
|
||||||
|
|
||||||
|
@ -15,109 +15,22 @@
|
|||||||
# pragma once
|
# pragma once
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#include <boost/range/config.hpp>
|
#include <boost/range/begin.hpp>
|
||||||
|
#include <boost/range/end.hpp>
|
||||||
#ifdef BOOST_NO_FUNCTION_TEMPLATE_ORDERING
|
#include <boost/range/difference_type.hpp>
|
||||||
#include <boost/range/detail/size.hpp>
|
#include <boost/assert.hpp>
|
||||||
#else
|
|
||||||
|
|
||||||
#include <boost/range/detail/implementation_help.hpp>
|
|
||||||
#include <boost/range/size_type.hpp>
|
|
||||||
#include <cstddef>
|
|
||||||
#include <iterator>
|
|
||||||
#include <utility>
|
|
||||||
|
|
||||||
namespace boost
|
namespace boost
|
||||||
{
|
{
|
||||||
|
|
||||||
#if !BOOST_WORKAROUND(__BORLANDC__, BOOST_TESTED_AT(0x564))
|
|
||||||
namespace range_detail
|
|
||||||
{
|
|
||||||
#endif
|
|
||||||
//////////////////////////////////////////////////////////////////////
|
|
||||||
// primary template
|
|
||||||
//////////////////////////////////////////////////////////////////////
|
|
||||||
|
|
||||||
template< typename C >
|
|
||||||
inline BOOST_DEDUCED_TYPENAME C::size_type
|
|
||||||
boost_range_size( const C& c )
|
|
||||||
{
|
|
||||||
return c.size();
|
|
||||||
}
|
|
||||||
|
|
||||||
//////////////////////////////////////////////////////////////////////
|
|
||||||
// pair
|
|
||||||
//////////////////////////////////////////////////////////////////////
|
|
||||||
|
|
||||||
template< typename Iterator >
|
|
||||||
inline std::size_t boost_range_size( const std::pair<Iterator,Iterator>& p )
|
|
||||||
{
|
|
||||||
return std::distance( p.first, p.second );
|
|
||||||
}
|
|
||||||
|
|
||||||
//////////////////////////////////////////////////////////////////////
|
|
||||||
// array
|
|
||||||
//////////////////////////////////////////////////////////////////////
|
|
||||||
|
|
||||||
template< typename T, std::size_t sz >
|
|
||||||
inline std::size_t boost_range_size( const T (&array)[sz] )
|
|
||||||
{
|
|
||||||
return range_detail::array_size<T,sz>( array );
|
|
||||||
}
|
|
||||||
|
|
||||||
template< typename T, std::size_t sz >
|
|
||||||
inline std::size_t boost_range_size( T (&array)[sz] )
|
|
||||||
{
|
|
||||||
return boost::range_detail::array_size<T,sz>( array );
|
|
||||||
}
|
|
||||||
|
|
||||||
//////////////////////////////////////////////////////////////////////
|
|
||||||
// string
|
|
||||||
//////////////////////////////////////////////////////////////////////
|
|
||||||
|
|
||||||
inline std::size_t boost_range_size( const char* const& s )
|
|
||||||
{
|
|
||||||
return boost::range_detail::str_size( s );
|
|
||||||
}
|
|
||||||
|
|
||||||
inline std::size_t boost_range_size( const wchar_t* const& s )
|
|
||||||
{
|
|
||||||
return boost::range_detail::str_size( s );
|
|
||||||
}
|
|
||||||
|
|
||||||
#if !BOOST_WORKAROUND(__BORLANDC__, BOOST_TESTED_AT(0x564))
|
|
||||||
} // namespace 'range_detail'
|
|
||||||
#endif
|
|
||||||
|
|
||||||
template< class T >
|
template< class T >
|
||||||
inline BOOST_DEDUCED_TYPENAME range_size<T>::type size( const T& r )
|
inline BOOST_DEDUCED_TYPENAME range_difference<T>::type size( const T& r )
|
||||||
{
|
{
|
||||||
#if !BOOST_WORKAROUND(__BORLANDC__, BOOST_TESTED_AT(0x564))
|
BOOST_ASSERT( (boost::end( r ) - boost::begin( r )) >= 0 &&
|
||||||
using namespace range_detail;
|
"reachability invariant broken!" );
|
||||||
#endif
|
return boost::end( r ) - boost::begin( r );
|
||||||
return boost_range_size( r );
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
#if BOOST_WORKAROUND(__MWERKS__, <= 0x3003 ) || BOOST_WORKAROUND(__BORLANDC__, BOOST_TESTED_AT(0x564))
|
|
||||||
// BCB and CW are not able to overload pointer when class overloads are also available.
|
|
||||||
inline range_size<const char*>::type size( const char* r ) {
|
|
||||||
return range_detail::str_size( r );
|
|
||||||
}
|
|
||||||
inline range_size<char*>::type size( char* r ) {
|
|
||||||
return range_detail::str_size( r );
|
|
||||||
}
|
|
||||||
inline range_size<const wchar_t*>::type size( const wchar_t* r ) {
|
|
||||||
return range_detail::str_size( r );
|
|
||||||
}
|
|
||||||
inline range_size<wchar_t*>::type size( wchar_t* r ) {
|
|
||||||
return range_detail::str_size( r );
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
|
|
||||||
|
|
||||||
} // namespace 'boost'
|
} // namespace 'boost'
|
||||||
|
|
||||||
#endif // BOOST_NO_FUNCTION_TEMPLATE_ORDERING
|
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
@ -16,64 +16,20 @@
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
#include <boost/range/config.hpp>
|
#include <boost/range/config.hpp>
|
||||||
/*
|
|
||||||
#include <boost/range/difference_type.hpp>
|
|
||||||
|
|
||||||
namespace boost
|
|
||||||
{
|
|
||||||
namespace range_detail
|
|
||||||
{
|
|
||||||
template< class T >
|
|
||||||
struct add_unsigned;
|
|
||||||
|
|
||||||
template<>
|
|
||||||
struct add_unsigned<short>
|
|
||||||
{
|
|
||||||
typedef unsigned short type;
|
|
||||||
};
|
|
||||||
|
|
||||||
template<>
|
|
||||||
struct add_unsigned<int>
|
|
||||||
{
|
|
||||||
typedef unsigned int type;
|
|
||||||
};
|
|
||||||
|
|
||||||
template<>
|
|
||||||
struct add_unsigned<long>
|
|
||||||
{
|
|
||||||
typedef unsigned long type;
|
|
||||||
};
|
|
||||||
|
|
||||||
#ifdef BOOST_HAS_LONG_LONG
|
|
||||||
|
|
||||||
template<>
|
|
||||||
struct add_unsigned<long long>
|
|
||||||
{
|
|
||||||
typedef unsigned long long type;
|
|
||||||
};
|
|
||||||
#endif
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
template< class T >
|
|
||||||
struct range_size
|
|
||||||
{
|
|
||||||
typedef BOOST_DEDUCED_TYPENAME range_detail::add_unsigned<
|
|
||||||
BOOST_DEDUCED_TYPENAME range_difference<T>::type >::type
|
|
||||||
type;
|
|
||||||
};
|
|
||||||
}
|
|
||||||
*/
|
|
||||||
|
|
||||||
#ifdef BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION
|
#ifdef BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION
|
||||||
#include <boost/range/detail/size_type.hpp>
|
#include <boost/range/detail/size_type.hpp>
|
||||||
#else
|
#else
|
||||||
|
|
||||||
|
#include <boost/type_traits/remove_const.hpp>
|
||||||
#include <cstddef>
|
#include <cstddef>
|
||||||
#include <utility>
|
#include <utility>
|
||||||
|
|
||||||
namespace boost
|
namespace boost
|
||||||
{
|
{
|
||||||
|
namespace detail
|
||||||
|
{
|
||||||
|
|
||||||
//////////////////////////////////////////////////////////////////////////
|
//////////////////////////////////////////////////////////////////////////
|
||||||
// default
|
// default
|
||||||
//////////////////////////////////////////////////////////////////////////
|
//////////////////////////////////////////////////////////////////////////
|
||||||
@ -94,12 +50,6 @@ namespace boost
|
|||||||
typedef std::size_t type;
|
typedef std::size_t type;
|
||||||
};
|
};
|
||||||
|
|
||||||
template< typename Iterator >
|
|
||||||
struct range_size< const std::pair<Iterator,Iterator> >
|
|
||||||
{
|
|
||||||
typedef std::size_t type;
|
|
||||||
};
|
|
||||||
|
|
||||||
//////////////////////////////////////////////////////////////////////////
|
//////////////////////////////////////////////////////////////////////////
|
||||||
// array
|
// array
|
||||||
//////////////////////////////////////////////////////////////////////////
|
//////////////////////////////////////////////////////////////////////////
|
||||||
@ -109,64 +59,16 @@ namespace boost
|
|||||||
{
|
{
|
||||||
typedef std::size_t type;
|
typedef std::size_t type;
|
||||||
};
|
};
|
||||||
|
}
|
||||||
|
|
||||||
template< typename T, std::size_t sz >
|
template< class T >
|
||||||
struct range_size< const T[sz] >
|
struct range_size :
|
||||||
{
|
detail::range_size<T>
|
||||||
typedef std::size_t type;
|
{ };
|
||||||
};
|
|
||||||
|
|
||||||
//////////////////////////////////////////////////////////////////////////
|
template< class T >
|
||||||
// string
|
struct range_size<const T > : range_size<T>
|
||||||
//////////////////////////////////////////////////////////////////////////
|
{ };
|
||||||
|
|
||||||
template<>
|
|
||||||
struct range_size< char* >
|
|
||||||
{
|
|
||||||
typedef std::size_t type;
|
|
||||||
};
|
|
||||||
|
|
||||||
template<>
|
|
||||||
struct range_size< wchar_t* >
|
|
||||||
{
|
|
||||||
typedef std::size_t type;
|
|
||||||
};
|
|
||||||
|
|
||||||
template<>
|
|
||||||
struct range_size< const char* >
|
|
||||||
{
|
|
||||||
typedef std::size_t type;
|
|
||||||
};
|
|
||||||
|
|
||||||
template<>
|
|
||||||
struct range_size< const wchar_t* >
|
|
||||||
{
|
|
||||||
typedef std::size_t type;
|
|
||||||
};
|
|
||||||
|
|
||||||
template<>
|
|
||||||
struct range_size< char* const >
|
|
||||||
{
|
|
||||||
typedef std::size_t type;
|
|
||||||
};
|
|
||||||
|
|
||||||
template<>
|
|
||||||
struct range_size< wchar_t* const >
|
|
||||||
{
|
|
||||||
typedef std::size_t type;
|
|
||||||
};
|
|
||||||
|
|
||||||
template<>
|
|
||||||
struct range_size< const char* const >
|
|
||||||
{
|
|
||||||
typedef std::size_t type;
|
|
||||||
};
|
|
||||||
|
|
||||||
template<>
|
|
||||||
struct range_size< const wchar_t* const >
|
|
||||||
{
|
|
||||||
typedef std::size_t type;
|
|
||||||
};
|
|
||||||
|
|
||||||
} // namespace boost
|
} // namespace boost
|
||||||
|
|
||||||
|
@ -11,10 +11,13 @@
|
|||||||
#ifndef BOOST_RANGE_SUB_RANGE_HPP
|
#ifndef BOOST_RANGE_SUB_RANGE_HPP
|
||||||
#define BOOST_RANGE_SUB_RANGE_HPP
|
#define BOOST_RANGE_SUB_RANGE_HPP
|
||||||
|
|
||||||
|
#if BOOST_WORKAROUND(BOOST_MSVC, == 1310) || BOOST_WORKAROUND(BOOST_MSVC, == 1400)
|
||||||
|
#pragma warning( disable : 4996 )
|
||||||
|
#endif
|
||||||
|
|
||||||
#include <boost/range/config.hpp>
|
#include <boost/range/config.hpp>
|
||||||
#include <boost/range/iterator_range.hpp>
|
#include <boost/range/iterator_range.hpp>
|
||||||
#include <boost/range/value_type.hpp>
|
#include <boost/range/value_type.hpp>
|
||||||
#include <boost/range/result_iterator.hpp>
|
|
||||||
#include <boost/range/size_type.hpp>
|
#include <boost/range/size_type.hpp>
|
||||||
#include <boost/range/difference_type.hpp>
|
#include <boost/range/difference_type.hpp>
|
||||||
#include <boost/assert.hpp>
|
#include <boost/assert.hpp>
|
||||||
@ -23,34 +26,29 @@ namespace boost
|
|||||||
{
|
{
|
||||||
|
|
||||||
template< class ForwardRange >
|
template< class ForwardRange >
|
||||||
class sub_range : public iterator_range< BOOST_DEDUCED_TYPENAME range_result_iterator<ForwardRange>::type >
|
class sub_range : public iterator_range< BOOST_DEDUCED_TYPENAME range_iterator<ForwardRange>::type >
|
||||||
{
|
{
|
||||||
typedef BOOST_DEDUCED_TYPENAME range_result_iterator<ForwardRange>::type iterator_t;
|
typedef BOOST_DEDUCED_TYPENAME range_iterator<ForwardRange>::type iterator_t;
|
||||||
typedef iterator_range< iterator_t > base;
|
typedef iterator_range< iterator_t > base;
|
||||||
|
|
||||||
typedef BOOST_DEDUCED_TYPENAME base::impl impl;
|
typedef BOOST_DEDUCED_TYPENAME base::impl impl;
|
||||||
public:
|
public:
|
||||||
typedef BOOST_DEDUCED_TYPENAME range_value<ForwardRange>::type value_type;
|
typedef BOOST_DEDUCED_TYPENAME range_value<ForwardRange>::type value_type;
|
||||||
typedef BOOST_DEDUCED_TYPENAME range_result_iterator<ForwardRange>::type iterator;
|
typedef BOOST_DEDUCED_TYPENAME range_iterator<ForwardRange>::type iterator;
|
||||||
typedef BOOST_DEDUCED_TYPENAME range_const_iterator<ForwardRange>::type const_iterator;
|
typedef BOOST_DEDUCED_TYPENAME range_iterator<const ForwardRange>::type const_iterator;
|
||||||
typedef BOOST_DEDUCED_TYPENAME range_difference<ForwardRange>::type difference_type;
|
typedef BOOST_DEDUCED_TYPENAME range_difference<ForwardRange>::type difference_type;
|
||||||
typedef BOOST_DEDUCED_TYPENAME range_size<ForwardRange>::type size_type;
|
typedef BOOST_DEDUCED_TYPENAME range_size<ForwardRange>::type size_type;
|
||||||
typedef BOOST_DEDUCED_TYPENAME base::reference reference;
|
typedef BOOST_DEDUCED_TYPENAME base::reference reference;
|
||||||
typedef BOOST_DEDUCED_TYPENAME iterator_reference<const_iterator>::type const_reference;
|
|
||||||
|
|
||||||
public:
|
public:
|
||||||
sub_range() : base()
|
sub_range() : base()
|
||||||
{ }
|
{ }
|
||||||
|
|
||||||
/*
|
#if BOOST_WORKAROUND(BOOST_MSVC, == 1310) || BOOST_WORKAROUND(BOOST_MSVC, == 1400)
|
||||||
template< class ForwardRange2 >
|
sub_range( const sub_range& r )
|
||||||
sub_range( sub_range<ForwardRange2> r ) :
|
: base( static_cast<const base&>( r ) )
|
||||||
|
{ }
|
||||||
#if BOOST_WORKAROUND(BOOST_INTEL_CXX_VERSION, <= 800 )
|
#endif
|
||||||
base( impl::adl_begin( r ), impl::adl_end( r ) )
|
|
||||||
#else
|
|
||||||
base( r )
|
|
||||||
#endif */
|
|
||||||
|
|
||||||
template< class ForwardRange2 >
|
template< class ForwardRange2 >
|
||||||
sub_range( ForwardRange2& r ) :
|
sub_range( ForwardRange2& r ) :
|
||||||
@ -91,13 +89,9 @@ namespace boost
|
|||||||
return *this;
|
return *this;
|
||||||
}
|
}
|
||||||
|
|
||||||
sub_range& operator=( sub_range r )
|
sub_range& operator=( const sub_range& r )
|
||||||
{
|
{
|
||||||
//
|
base::operator=( static_cast<const base&>(r) );
|
||||||
// argument passed by value to avoid
|
|
||||||
// const_iterator to iterator conversion
|
|
||||||
//
|
|
||||||
base::operator=( r );
|
|
||||||
return *this;
|
return *this;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -107,7 +101,7 @@ namespace boost
|
|||||||
const_iterator begin() const { return base::begin(); }
|
const_iterator begin() const { return base::begin(); }
|
||||||
iterator end() { return base::end(); }
|
iterator end() { return base::end(); }
|
||||||
const_iterator end() const { return base::end(); }
|
const_iterator end() const { return base::end(); }
|
||||||
size_type size() const { return base::size(); }
|
difference_type size() const { return base::size(); }
|
||||||
|
|
||||||
|
|
||||||
public: // convenience
|
public: // convenience
|
||||||
@ -116,7 +110,7 @@ namespace boost
|
|||||||
return base::front();
|
return base::front();
|
||||||
}
|
}
|
||||||
|
|
||||||
const_reference front() const
|
const value_type& front() const
|
||||||
{
|
{
|
||||||
return base::front();
|
return base::front();
|
||||||
}
|
}
|
||||||
@ -126,17 +120,17 @@ namespace boost
|
|||||||
return base::back();
|
return base::back();
|
||||||
}
|
}
|
||||||
|
|
||||||
const_reference back() const
|
const value_type& back() const
|
||||||
{
|
{
|
||||||
return base::back();
|
return base::back();
|
||||||
}
|
}
|
||||||
|
|
||||||
reference operator[]( size_type sz )
|
reference operator[]( difference_type sz )
|
||||||
{
|
{
|
||||||
return base::operator[](sz);
|
return base::operator[](sz);
|
||||||
}
|
}
|
||||||
|
|
||||||
const_reference operator[]( size_type sz ) const
|
const value_type& operator[]( difference_type sz ) const
|
||||||
{
|
{
|
||||||
return base::operator[](sz);
|
return base::operator[](sz);
|
||||||
}
|
}
|
||||||
@ -168,3 +162,4 @@ namespace boost
|
|||||||
} // namespace 'boost'
|
} // namespace 'boost'
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
@ -18,129 +18,17 @@
|
|||||||
#include <boost/range/config.hpp>
|
#include <boost/range/config.hpp>
|
||||||
#include <boost/range/iterator.hpp>
|
#include <boost/range/iterator.hpp>
|
||||||
|
|
||||||
#ifdef BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION
|
//#ifdef BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION
|
||||||
#include <boost/range/detail/value_type.hpp>
|
//#include <boost/range/detail/value_type.hpp>
|
||||||
#else
|
//#else
|
||||||
|
|
||||||
#include <boost/iterator/iterator_traits.hpp>
|
#include <boost/iterator/iterator_traits.hpp>
|
||||||
|
|
||||||
namespace boost
|
namespace boost
|
||||||
{
|
{
|
||||||
template< class T >
|
template< class T >
|
||||||
struct range_value
|
struct range_value : iterator_value< typename range_iterator<T>::type >
|
||||||
{
|
{ };
|
||||||
typedef BOOST_DEDUCED_TYPENAME iterator_value<
|
|
||||||
BOOST_DEDUCED_TYPENAME range_iterator<T>::type >::type
|
|
||||||
type;
|
|
||||||
};
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
|
||||||
#include <cstddef>
|
|
||||||
#include <utility>
|
|
||||||
|
|
||||||
|
|
||||||
namespace boost
|
|
||||||
{
|
|
||||||
//////////////////////////////////////////////////////////////////////////
|
|
||||||
// default
|
|
||||||
//////////////////////////////////////////////////////////////////////////
|
|
||||||
|
|
||||||
template< typename C >
|
|
||||||
struct range_value
|
|
||||||
{
|
|
||||||
typedef BOOST_DEDUCED_TYPENAME C::value_type type;
|
|
||||||
};
|
|
||||||
|
|
||||||
//////////////////////////////////////////////////////////////////////////
|
|
||||||
// pair
|
|
||||||
//////////////////////////////////////////////////////////////////////////
|
|
||||||
|
|
||||||
template< typename Iterator >
|
|
||||||
struct range_value< std::pair<Iterator,Iterator> >
|
|
||||||
{
|
|
||||||
typedef BOOST_DEDUCED_TYPENAME
|
|
||||||
iterator_value<Iterator>::type type;
|
|
||||||
};
|
|
||||||
|
|
||||||
|
|
||||||
template< typename Iterator >
|
|
||||||
struct range_value< const std::pair<Iterator,Iterator> >
|
|
||||||
{
|
|
||||||
typedef BOOST_DEDUCED_TYPENAME
|
|
||||||
iterator_value<Iterator>::type type;
|
|
||||||
};
|
|
||||||
|
|
||||||
//////////////////////////////////////////////////////////////////////////
|
|
||||||
// array
|
|
||||||
//////////////////////////////////////////////////////////////////////////
|
|
||||||
|
|
||||||
template< typename T, std::size_t sz >
|
|
||||||
struct range_value< T[sz] >
|
|
||||||
{
|
|
||||||
typedef T type;
|
|
||||||
};
|
|
||||||
|
|
||||||
template< typename T, std::size_t sz >
|
|
||||||
struct range_value< const T[sz] >
|
|
||||||
{
|
|
||||||
typedef const T type;
|
|
||||||
};
|
|
||||||
|
|
||||||
//////////////////////////////////////////////////////////////////////////
|
|
||||||
// string
|
|
||||||
//////////////////////////////////////////////////////////////////////////
|
|
||||||
|
|
||||||
template<>
|
|
||||||
struct range_value< char* >
|
|
||||||
{
|
|
||||||
typedef char type;
|
|
||||||
};
|
|
||||||
|
|
||||||
template<>
|
|
||||||
struct range_value< wchar_t* >
|
|
||||||
{
|
|
||||||
typedef wchar_t type;
|
|
||||||
};
|
|
||||||
|
|
||||||
template<>
|
|
||||||
struct range_value< const char* >
|
|
||||||
{
|
|
||||||
typedef const char type;
|
|
||||||
};
|
|
||||||
|
|
||||||
template<>
|
|
||||||
struct range_value< const wchar_t* >
|
|
||||||
{
|
|
||||||
typedef const wchar_t type;
|
|
||||||
};
|
|
||||||
|
|
||||||
template<>
|
|
||||||
struct range_value< char* const >
|
|
||||||
{
|
|
||||||
typedef char type;
|
|
||||||
};
|
|
||||||
|
|
||||||
template<>
|
|
||||||
struct range_value< wchar_t* const >
|
|
||||||
{
|
|
||||||
typedef wchar_t type;
|
|
||||||
};
|
|
||||||
|
|
||||||
template<>
|
|
||||||
struct range_value< const char* const >
|
|
||||||
{
|
|
||||||
typedef const char type;
|
|
||||||
};
|
|
||||||
|
|
||||||
template<>
|
|
||||||
struct range_value< const wchar_t* const >
|
|
||||||
{
|
|
||||||
typedef const wchar_t type;
|
|
||||||
};
|
|
||||||
|
|
||||||
} // namespace boost
|
|
||||||
*/
|
|
||||||
#endif // BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION
|
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
Reference in New Issue
Block a user