| 151 | } |
| 152 | |
| 153 | static boost::python::list parameterPath( CompoundParameter &o, ConstParameterPtr child ) |
| 154 | { |
| 155 | std::vector<std::string> p; |
| 156 | o.parameterPath( child.get(), p ); |
| 157 | boost::python::list result; |
| 158 | for( std::vector<std::string>::const_iterator it=p.begin(); it!=p.end(); it++ ) |
| 159 | { |
| 160 | result.append( *it ); |
| 161 | } |
| 162 | return result; |
| 163 | } |
| 164 | |
| 165 | } // namespace |
| 166 |
nothing calls this directly
no test coverage detected