* @brief Creates an iterator from a LayerPropertiesNode pointer * This requires the node pointer to point to a node that is addressable by an iterator - i.e. * lives within a view and is either a direct member or a child of a member of a layer properties * list. If this is not the case, the resulting iterator will be a null iterator. */
| 1567 | * list. If this is not the case, the resulting iterator will be a null iterator. |
| 1568 | */ |
| 1569 | LayerPropertiesIterator (lay::LayerPropertiesNode *node) |
| 1570 | : LayerPropertiesConstIterator (node) |
| 1571 | { |
| 1572 | // .. nothing yet .. |
| 1573 | } |
| 1574 | |
| 1575 | /** |
| 1576 | * @brief Constructor: create an iterator pointing either at the beginning or at the end |
no outgoing calls
no test coverage detected