| 1539 | } |
| 1540 | |
| 1541 | db::LayerProperties |
| 1542 | ParsedLayerSource::layer_props () const |
| 1543 | { |
| 1544 | db::LayerProperties lp; |
| 1545 | if (has_name ()) { |
| 1546 | lp.name = name (); |
| 1547 | } |
| 1548 | if (m_layer >= 0) { |
| 1549 | lp.layer = m_layer; |
| 1550 | } |
| 1551 | if (m_datatype >= 0) { |
| 1552 | lp.datatype = m_datatype; |
| 1553 | } |
| 1554 | return lp; |
| 1555 | } |
| 1556 | |
| 1557 | unsigned int |
| 1558 | ParsedLayerSource::color_index () const |
no test coverage detected