| 142 | TerminalOutput::~TerminalOutput() { |
| 143 | if (m_out) { *m_out << *this; } |
| 144 | } |
| 145 | |
| 146 | void TerminalOutput::Print(std::ostream& os) const { os << *this; } |
| 147 | |
| 148 | std::ostream& operator<<(std::ostream& stream, TerminalOutput const& table) { |
| 149 | table.Setup(); |