| 14 | namespace generative::io { |
| 15 | |
| 16 | generative::noding::GeometryGraph TGFGraphReader::read() noexcept |
| 17 | { |
| 18 | for (std::string line; std::getline(m_input, line);) |
| 19 | { |
| 20 | this->read(line); |
| 21 | } |
| 22 | |
| 23 | return {std::move(m_nodes_vec), m_factory}; |
| 24 | } |
| 25 | |
| 26 | void TGFGraphReader::read(const std::string& line) noexcept |
| 27 | { |
no outgoing calls