| 19 | } |
| 20 | |
| 21 | Properties Properties::inherit(Json const& properties) const { |
| 22 | return jsonMerge(properties, m_properties); |
| 23 | } |
| 24 | |
| 25 | Properties Properties::inherit(Properties const& properties) const { |
| 26 | return jsonMerge(properties.m_properties, m_properties); |