| 1811 | } |
| 1812 | |
| 1813 | int |
| 1814 | ChoiceParam::getNumOptions() const |
| 1815 | { |
| 1816 | KnobChoicePtr knob = _choiceKnob.lock(); |
| 1817 | if (!knob) { |
| 1818 | return 0; |
| 1819 | } |
| 1820 | return knob->getNumEntries(); |
| 1821 | } |
| 1822 | |
| 1823 | QStringList |
| 1824 | ChoiceParam::getOptions() const |
no test coverage detected