GEOS
|
Class for managing table data. More...
#include <TableData.hpp>
Public Member Functions | |
template<typename ... Args> | |
void | addRow (Args const &... args) |
Add a row to the table. The values passed to addRow (can be any type). More... | |
void | addRow (std::vector< string > const &row) |
Add a row to the table. More... | |
void | clear () |
Reset data in the table. | |
std::vector< std::vector< string > > const & | getTableDataRows () const |
std::vector< string > const & | getErrorMsgs () const |
Get all error messages. More... | |
Class for managing table data.
Definition at line 33 of file TableData.hpp.
void geos::TableData::addRow | ( | Args const &... | args | ) |
Add a row to the table. The values passed to addRow (can be any type).
args | Cell values to be added to the row. |
Definition at line 153 of file TableData.hpp.
void geos::TableData::addRow | ( | std::vector< string > const & | row | ) |
Add a row to the table.
row | A vector of string representing a row |
std::vector< string > const& geos::TableData::getErrorMsgs | ( | ) | const |
Get all error messages.
std::vector< std::vector< string > > const& geos::TableData::getTableDataRows | ( | ) | const |