| 45 | IE_CORE_DEFINERUNTIMETYPED( ValidatedStringParameter ); |
| 46 | |
| 47 | ValidatedStringParameter::ValidatedStringParameter( const std::string &name, const std::string &description, |
| 48 | const std::string ®ex, const std::string ®exDescription, const std::string &defaultValue, bool allowEmptyString, const StringParameter::PresetsContainer &presets, bool presetsOnly, ConstCompoundObjectPtr userData ) |
| 49 | : StringParameter( name, description, defaultValue, presets, presetsOnly, userData ), m_regex( regex ), m_regexDescription( regexDescription ), m_allowEmptyString( allowEmptyString ) |
| 50 | { |
| 51 | } |
| 52 | |
| 53 | const std::string &ValidatedStringParameter::regex() const |
| 54 | { |
no outgoing calls
no test coverage detected