| 677 | } |
| 678 | |
| 679 | Json Object::configValue(String const& name, Json const& def) const { |
| 680 | if (auto orientation = currentOrientation()) |
| 681 | return jsonMergeQueryDef(name, def, m_config->config, orientation->config, m_parameters.baseMap()); |
| 682 | else |
| 683 | return jsonMergeQueryDef(name, def, m_config->config, m_parameters.baseMap()); |
| 684 | } |
| 685 | |
| 686 | ObjectConfigConstPtr Object::config() const { |
| 687 | return m_config; |
no test coverage detected