#include <String_Traits_T.h>
Inheritance diagram for TAO::details::string_traits_decorator< char_type, derived >:
Public Types | |
typedef char_type * | value_type |
typedef char_type const * | const_value_type |
Static Public Member Functions | |
static void | zero_range (char_type **begin, char_type **end) |
static void | initialize_range (char_type **begin, char_type **end) |
template<typename iter> | |
static void | copy_range (char_type **begin, char_type **end, iter dst) |
static void | release_range (char_type **begin, char_type **end) |
static char_type const * | initialize_if_zero (char_type *&element) |
Definition at line 26 of file String_Traits_T.h.
typedef char_type const* TAO::details::string_traits_decorator< char_type, derived >::const_value_type |
Definition at line 29 of file String_Traits_T.h.
typedef char_type* TAO::details::string_traits_decorator< char_type, derived >::value_type |
Definition at line 28 of file String_Traits_T.h.
static void TAO::details::string_traits_decorator< char_type, derived >::copy_range | ( | char_type ** | begin, | |
char_type ** | end, | |||
iter | dst | |||
) | [inline, static] |
static char_type const* TAO::details::string_traits_decorator< char_type, derived >::initialize_if_zero | ( | char_type *& | element | ) | [inline, static] |
Definition at line 65 of file String_Traits_T.h.
00066 { 00067 if (element == 0) 00068 { 00069 element = derived::default_initializer(); 00070 } 00071 return element; 00072 }
static void TAO::details::string_traits_decorator< char_type, derived >::initialize_range | ( | char_type ** | begin, | |
char_type ** | end | |||
) | [inline, static] |
static void TAO::details::string_traits_decorator< char_type, derived >::release_range | ( | char_type ** | begin, | |
char_type ** | end | |||
) | [inline, static] |
Definition at line 59 of file String_Traits_T.h.
00061 { 00062 std::for_each(begin, end, &derived::release); 00063 }
static void TAO::details::string_traits_decorator< char_type, derived >::zero_range | ( | char_type ** | begin, | |
char_type ** | end | |||
) | [inline, static] |