| 54 | |
| 55 | template<class Type, typename = std::enable_if_t<!std::is_convertible_v<Type, std::string_view>>> |
| 56 | void setPropertyValue(std::string_view _name, const Type& _value) const |
| 57 | { |
| 58 | setPropertyValue(_name, MyGUI::utility::toString(_value)); |
| 59 | } |
| 60 | |
| 61 | PropertyPtr getProperty(std::string_view _name) const; |
| 62 |
no test coverage detected