| 52 | IE_CORE_DEFINERUNTIMETYPED( FileNameParameter ); |
| 53 | |
| 54 | FileNameParameter::FileNameParameter( const std::string &name, const std::string &description, |
| 55 | const std::string &extensions, const std::string &defaultValue, bool allowEmptyString, PathParameter::CheckType check, |
| 56 | const StringParameter::PresetsContainer &presets, bool presetsOnly, ConstCompoundObjectPtr userData ) |
| 57 | : PathParameter( name, description, defaultValue, allowEmptyString, check, presets, presetsOnly, userData ) |
| 58 | { |
| 59 | if( extensions!="" ) |
| 60 | { |
| 61 | split( m_extensions, extensions, is_any_of( " " ) ); |
| 62 | } |
| 63 | } |
| 64 | |
| 65 | const std::vector<std::string> &FileNameParameter::extensions() const |
| 66 | { |
no test coverage detected