Teuchos Package Browser (Single Doxygen Collection)
Version of the Day
|
#include <Teuchos_TableColumn.hpp>
Public Member Functions | |
TableColumn () | |
Empty ctor. More... | |
TableColumn (const Array< std::string > &vals) | |
Form a column of std::string entries. More... | |
TableColumn (const Array< double > &vals, int precision, const std::ios_base::fmtflags &flags) | |
Form a column of double entries. More... | |
TableColumn (const Array< double > &first, const Array< double > &second, int precision, const std::ios_base::fmtflags &flags, bool spaceBeforeParentheses) | |
Form a column of compound entries written as "first(second)". More... | |
int | numRows () const |
void | addEntry (const RCP< TableEntry > &entry) |
const RCP< TableEntry > & | entry (int i) const |
Private Attributes | |
Array< RCP< TableEntry > > | data_ |
KL 30 Apr 2006 – initial design.
Definition at line 61 of file Teuchos_TableColumn.hpp.
|
inline |
Empty ctor.
Definition at line 65 of file Teuchos_TableColumn.hpp.
TableColumn::TableColumn | ( | const Array< std::string > & | vals | ) |
Form a column of std::string entries.
Definition at line 47 of file Teuchos_TableColumn.cpp.
TableColumn::TableColumn | ( | const Array< double > & | vals, |
int | precision, | ||
const std::ios_base::fmtflags & | flags | ||
) |
Form a column of double entries.
Definition at line 57 of file Teuchos_TableColumn.cpp.
TableColumn::TableColumn | ( | const Array< double > & | first, |
const Array< double > & | second, | ||
int | precision, | ||
const std::ios_base::fmtflags & | flags, | ||
bool | spaceBeforeParentheses | ||
) |
Form a column of compound entries written as "first(second)".
Definition at line 69 of file Teuchos_TableColumn.cpp.
|
inline |
Definition at line 79 of file Teuchos_TableColumn.hpp.
void TableColumn::addEntry | ( | const RCP< TableEntry > & | entry | ) |
Definition at line 89 of file Teuchos_TableColumn.cpp.
|
inline |
Definition at line 85 of file Teuchos_TableColumn.hpp.
|
private |
Definition at line 88 of file Teuchos_TableColumn.hpp.