22 Row(
Row const& row) : row_(row.row_.
str()), first_(row.first_){}
26 template <
typename... Arguments>
27 Row(Arguments... arguments) {
31 template <
typename Cell,
typename... Arguments>
32 void AddCells(Cell
const& cell, Arguments... arguments) {
37 template <
typename Cell>
46 template <
typename Cell>
47 void SetCell(Cell
const& cell) {
49 row_ <<
" " << cell <<
'\n';
51 }
else row_ <<
" & " << cell <<
'\n';
56 std::stringstream row_;
void Initialize()
Definition: Row.cpp:30
void AddCells(Cell const &cell, Arguments...arguments)
Definition: Row.hh:32
void AddCell(Cell const &cell)
Definition: Row.hh:38
Row(Row const &row)
Definition: Row.hh:22
Boosted Collider Analysis.
Definition: Analysis.hh:15
std::string str() const
Definition: Row.cpp:36
Row(Arguments...arguments)
Definition: Row.hh:27
Row()
Definition: Row.cpp:17