| 413 | } |
| 414 | |
| 415 | void |
| 416 | RecursiveShapeIterator::set_layers (const std::vector<unsigned int> &layers) |
| 417 | { |
| 418 | if (! m_has_layers || m_layers != layers) { |
| 419 | m_has_layers = true; |
| 420 | m_layers = layers; |
| 421 | m_layer = 0; |
| 422 | reset (); |
| 423 | } |
| 424 | } |
| 425 | |
| 426 | namespace { |
| 427 |
no test coverage detected