| 292 | } |
| 293 | |
| 294 | void ArrayOfAtoms::addRow() { |
| 295 | addCol(); |
| 296 | _array.push_back(vector<sptr<Atom>>()); |
| 297 | _row++; |
| 298 | _col = 0; |
| 299 | } |
| 300 | |
| 301 | void ArrayOfAtoms::addRowSpecifier(const sptr<CellSpecifier>& spe) { |
| 302 | auto it = _rowSpecifiers.find(_row); |
nothing calls this directly
no outgoing calls
no test coverage detected