| 1604 | } |
| 1605 | |
| 1606 | const std::string |
| 1607 | arguments_string() const |
| 1608 | { |
| 1609 | std::string result; |
| 1610 | for(const auto& kv: m_sequential) |
| 1611 | { |
| 1612 | result += kv.key() + " = " + kv.value() + "\n"; |
| 1613 | } |
| 1614 | for(const auto& kv: m_defaults) |
| 1615 | { |
| 1616 | result += kv.key() + " = " + kv.value() + " " + "(default)" + "\n"; |
| 1617 | } |
| 1618 | return result; |
| 1619 | } |
| 1620 | |
| 1621 | private: |
| 1622 | NameHashMap m_keys{}; |