#include <TestClassVectors.h>
Definition at line 12 of file TestClassVectors.h.
◆ TestClassVectors()
TestClassVectors::TestClassVectors |
( |
| ) |
|
|
inline |
◆ ~TestClassVectors()
TestClassVectors::~TestClassVectors |
( |
| ) |
|
|
inline |
◆ operator!=()
◆ operator==()
Definition at line 79 of file TestClassVectors.h.
85 std::vector< std::string >::const_iterator i_vector_of_string_rhs = rhs.
m_vector_of_string.begin();
88 if ( *
i != *i_vector_of_string_rhs )
return false;
91 std::vector< double >::const_iterator i_vector_of_double_rhs = rhs.
m_vector_of_double.begin();
94 if ( *
i != *i_vector_of_double_rhs )
return false;
100 if (
i->size() != i_vector_of_vector_of_double_rhs->size() )
return false;
102 std::vector< double >::const_iterator j_vector_of_vector_of_double_rhs = i_vector_of_vector_of_double_rhs->begin();
103 for ( std::vector< double >::const_iterator j =
i->begin();
104 j !=
i->end(); ++j, ++j_vector_of_vector_of_double_rhs ) {
105 if ( *j != *j_vector_of_vector_of_double_rhs )
return false;
◆ setNonZero()
void TestClassVectors::setNonZero |
( |
| ) |
|
|
inline |
◆ streamOut()
std::ostream & TestClassVectors::streamOut |
( |
std::ostream & |
os | ) |
const |
|
inline |
Definition at line 36 of file TestClassVectors.h.
53 os << std::endl <<
" (" <<
i->size() <<
") :";
54 for ( std::vector< double >::const_iterator j =
i->begin();
55 j !=
i->end(); ++j ) {
◆ m_vector_of_double
std::vector< double > TestClassVectors::m_vector_of_double |
◆ m_vector_of_string
std::vector< std::string > TestClassVectors::m_vector_of_string |
◆ m_vector_of_vector_of_double
std::vector< std::vector< double > > TestClassVectors::m_vector_of_vector_of_double |
The documentation for this class was generated from the following file: