| 55 | } |
| 56 | |
| 57 | FrameListParameter::FrameListParameter( const std::string &name, const std::string &description, const std::string &defaultValue, bool allowEmptyList, |
| 58 | const PresetsContainer &presets, bool presetsOnly, ConstCompoundObjectPtr userData ) |
| 59 | : StringParameter( name, description, new StringData( defaultValue ), ::convertPresets( presets ), presetsOnly, userData ), |
| 60 | m_allowEmptyList( allowEmptyList ) |
| 61 | { |
| 62 | |
| 63 | } |
| 64 | |
| 65 | FrameListParameter::FrameListParameter( const std::string &name, const std::string &description, StringDataPtr defaultValue, bool allowEmptyList, |
| 66 | const ObjectPresetsContainer &presets, bool presetsOnly, ConstCompoundObjectPtr userData ) |
no test coverage detected