| 101 | } |
| 102 | |
| 103 | static boost::python::list compoundParameterKeys( const CompoundParameter &o ) |
| 104 | { |
| 105 | boost::python::list result; |
| 106 | CompoundParameter::ParameterVector::const_iterator it; |
| 107 | for( it = o.orderedParameters().begin(); it!=o.orderedParameters().end(); it++ ) |
| 108 | { |
| 109 | result.append( (*it)->name() ); |
| 110 | } |
| 111 | return result; |
| 112 | } |
| 113 | |
| 114 | static boost::python::list compoundParameterValues( const CompoundParameter &o ) |
| 115 | { |