5 #ifndef TESTCLASSSTLCONTAINERSEXT_H
6 #define TESTCLASSSTLCONTAINERSEXT_H
65 std::list< double >::const_iterator this_i_list_of_double =
m_list_of_double.begin();
66 std::list< double >::const_iterator rhs_i_list_of_double = rhs.
m_list_of_double.begin();
68 if ( *this_i_list_of_double != *rhs_i_list_of_double )
return false;
69 ++this_i_list_of_double;
70 ++rhs_i_list_of_double;
73 std::deque< float >::const_iterator this_i_deque_of_float =
m_deque_of_float.begin();
74 std::deque< float >::const_iterator rhs_i_deque_of_float = rhs.
m_deque_of_float.begin();
76 if ( *this_i_deque_of_float != *rhs_i_deque_of_float )
return false;
77 ++this_i_deque_of_float;
78 ++rhs_i_deque_of_float;
87 return ( ( (*
this) == rhs ) ?
false :
true );