*** empty log message ***

[SVN r27671]
This commit is contained in:
Thorsten Jørgen Ottosen
2005-03-15 16:00:19 +00:00
parent bf5ca9612c
commit 4524abb615
3 changed files with 71 additions and 24 deletions

View File

@ -17,43 +17,57 @@
#include <afx.h> // for CString
#include <boost/range/config.hpp>
#include <boost/range/difference_type.hpp>
#include <boost/range/metafunctions.hpp>
namespace boost
{
struct iterator_of< CString >
template<>
struct range_iterator< CString >
{
typedef TCHAR* type;
};
struct const_iterator_of< CString >
//
// Why is this needed?!?
//
template<>
struct range_iterator< const CString >
{
typedef TCHAR* type;
};
template<>
struct range_const_iterator< CString >
{
typedef const TCHAR* type;
};
struct difference_type_of< CString >
template<>
struct range_difference< CString >
{
typedef std::ptrdiff_t type;
};
struct size_type_of< CString >
template<>
struct range_size< CString >
{
typedef int type;
};
struct value_type_of< CString >
template<>
struct range_value< CString >
{
typedef TCHAR type;
};
TCHAR* begin( CString& r )
{
return &r[0];
return r.GetBuffer(0);
}
const TCHAR* begin( const CString& r )
{
return &r[0];
return (LPCTSTR)r;
}
int size( const CString& r )
@ -61,12 +75,12 @@ namespace boost
return r.GetLength();
}
T* end( CString& r )
TCHAR* end( CString& r )
{
return begin( r ) + size( r );
}
const T* end( const CString& r )
const TCHAR* end( const CString& r )
{
return begin( r ) + size( r );
}