24 Row(
const std::vector<Column>&);
25 Row(std::vector<ColumnDef>&);
32 if (idx < (
int)
fCol.size() && idx>=0)
39 if (idx < (
int)
fCol.size() && idx>=0) {
66 friend std::ostream&
operator<< (std::ostream& stream,
const Row& row);
82 inline std::ostream&
operator<< (std::ostream& stream,
const Row& row) {
83 for (
unsigned int i=0; i<row.
fCol.size(); ++i) {
84 stream << row.
fCol[i];
85 if (i < row.
fCol.size()-1)