| 497 | } |
| 498 | |
| 499 | Variant ImportInfoModern::get_iinfo_val(const String &p_section, const String &p_prop) const { |
| 500 | if (!cf->has_section_key(p_section, p_prop)) { |
| 501 | return Variant(); |
| 502 | } |
| 503 | return cf->get_value(p_section, p_prop); |
| 504 | } |
| 505 | |
| 506 | void ImportInfoModern::set_iinfo_val(const String &p_section, const String &p_prop, const Variant &p_val) { |
| 507 | cf->set_value(p_section, p_prop, p_val); |
no test coverage detected