Esempio n. 1
0
void
FormattedTable::printRowDivider(std::ostream & out,
                                std::map<std::string, unsigned short> & col_widths,
                                std::vector<std::string>::iterator & col_begin,
                                std::vector<std::string>::iterator & col_end) const
{
  printNoDataRow('+', '-', out, col_widths, col_begin, col_end);
}
Esempio n. 2
0
void
FormattedTable::printOmittedRow(std::ostream & out, std::map<std::string, unsigned short> & col_widths,
                                std::set<std::string>::iterator & col_begin, std::set<std::string>::iterator & col_end) const
{
  printNoDataRow(':', ' ', out, col_widths, col_begin, col_end);
}