-----------------------------------------------------------------------------
| 31 | |
| 32 | //----------------------------------------------------------------------------- |
| 33 | Table::Table(std::string title, bool right_justify) |
| 34 | : name(std::move(title)), _right_justify(right_justify) |
| 35 | { |
| 36 | // Do nothing |
| 37 | } |
| 38 | //----------------------------------------------------------------------------- |
| 39 | void Table::set(const std::string& row, const std::string& col, |
| 40 | std::variant<std::string, int, double> value) |
nothing calls this directly
no outgoing calls
no test coverage detected