#include <TestClassSTLContainers.h>
Definition at line 14 of file TestClassSTLContainers.h.
◆ TestClassSTLContainers()
| TestClassSTLContainers::TestClassSTLContainers |
( |
| ) |
|
|
default |
◆ operator!=()
◆ operator==()
Definition at line 68 of file TestClassSTLContainers.h.
76 std::vector< int >::const_iterator this_i_vector_of_int =
m_vector_of_int.begin();
77 std::vector< int >::const_iterator rhs_i_vector_of_int = rhs.
m_vector_of_int.begin();
79 if ( *this_i_vector_of_int != *rhs_i_vector_of_int )
return false;
80 ++this_i_vector_of_int;
81 ++rhs_i_vector_of_int;
85 std::map< std::string, long >::const_iterator rhs_i_map_of_string_to_long = rhs.
m_map_of_string_to_long.begin();
87 if ( this_i_map_of_string_to_long->first != rhs_i_map_of_string_to_long->first ||
88 this_i_map_of_string_to_long->second != rhs_i_map_of_string_to_long->second )
return false;
89 ++this_i_map_of_string_to_long;
90 ++rhs_i_map_of_string_to_long;
93 std::set< unsigned short >::const_iterator this_i_set_of_ushort =
m_set_of_ushort.begin();
94 std::set< unsigned short >::const_iterator rhs_i_set_of_ushort = rhs.
m_set_of_ushort.begin();
96 if ( *this_i_set_of_ushort != *rhs_i_set_of_ushort )
return false;
97 ++this_i_set_of_ushort;
98 ++rhs_i_set_of_ushort;
◆ setNonZero()
| void TestClassSTLContainers::setNonZero |
( |
| ) |
|
|
inline |
◆ streamOut()
| std::ostream & TestClassSTLContainers::streamOut |
( |
std::ostream & |
os | ) |
const |
|
inline |
◆ m_map_of_string_to_long
| std::map< std::string, long > TestClassSTLContainers::m_map_of_string_to_long |
◆ m_set_of_ushort
| std::set< unsigned short > TestClassSTLContainers::m_set_of_ushort |
◆ m_vector_of_int
| std::vector< int > TestClassSTLContainers::m_vector_of_int |
The documentation for this class was generated from the following file: