| 52 | IE_CORE_DEFINERUNTIMETYPED( FileSequenceVectorParameter ); |
| 53 | |
| 54 | FileSequenceVectorParameter::FileSequenceVectorParameter( const std::string &name, const std::string &description, |
| 55 | const std::vector< std::string > &defaultValue, bool allowEmptyList, CheckType check, |
| 56 | const StringVectorParameter::PresetsContainer &presets, bool presetsOnly, ConstCompoundObjectPtr userData, |
| 57 | const ExtensionList &extensions ) |
| 58 | : PathVectorParameter( name, description, defaultValue, allowEmptyList, check, presets, presetsOnly, userData ), |
| 59 | m_extensions( extensions ) |
| 60 | { |
| 61 | } |
| 62 | |
| 63 | FileSequenceVectorParameter::FileSequenceVectorParameter( const std::string &name, const std::string &description, |
| 64 | ObjectTypePtr defaultValue, bool allowEmptyList, CheckType check, |
no outgoing calls
no test coverage detected