| 53 | class TableInternal : public std::enable_shared_from_this<TableInternal> { |
| 54 | public: |
| 55 | static std::shared_ptr<TableInternal> create() { |
| 56 | auto result = std::shared_ptr<TableInternal>(new TableInternal()); |
| 57 | result->format_.set_defaults(); |
| 58 | return result; |
| 59 | } |
| 60 | |
| 61 | void add_row(const std::vector<std::string> &cells) { |
| 62 | auto row = std::make_shared<Row>(shared_from_this()); |
nothing calls this directly
no test coverage detected