| 42 | IE_CORE_DEFINERUNTIMETYPED( Parameterised ); |
| 43 | |
| 44 | Parameterised::Parameterised( const std::string &description ) |
| 45 | : m_description( description ), m_parameters( new CompoundParameter ), m_userData( new CompoundObject ) |
| 46 | { |
| 47 | } |
| 48 | |
| 49 | Parameterised::Parameterised( const std::string &description, CompoundParameterPtr compoundParameter ) |
| 50 | : m_description( description ), m_parameters( compoundParameter ), m_userData( new CompoundObject ) |
no outgoing calls