| 2317 | } |
| 2318 | |
| 2319 | void |
| 2320 | PathParam::getTable(std::list<std::vector<std::string> >* table) const |
| 2321 | { |
| 2322 | KnobPathPtr k = _sKnob.lock(); |
| 2323 | if (!k) { |
| 2324 | return; |
| 2325 | } |
| 2326 | if (!k->isMultiPath()) { |
| 2327 | return; |
| 2328 | } |
| 2329 | try { |
| 2330 | k->getTable(table); |
| 2331 | } catch (const std::exception& /*e*/) { |
| 2332 | return; |
| 2333 | } |
| 2334 | } |
| 2335 | |
| 2336 | |
| 2337 | ////////////////////ButtonParam |
nothing calls this directly
no test coverage detected