* @brief Obtain a pointer to the object referenced * * If the iterator is null, the pointer returned is 0. */
| 1502 | * If the iterator is null, the pointer returned is 0. |
| 1503 | */ |
| 1504 | const LayerPropertiesNode *obj () const |
| 1505 | { |
| 1506 | if (! mp_obj) { |
| 1507 | set_obj (); |
| 1508 | } |
| 1509 | return mp_obj.get (); |
| 1510 | } |
| 1511 | |
| 1512 | /** |
| 1513 | * @brief Gets the layer properties list this iterator operates on |
no test coverage detected