| 2289 | } |
| 2290 | |
| 2291 | void |
| 2292 | PathParam::setAsMultiPathTable() |
| 2293 | { |
| 2294 | KnobPathPtr knob = _sKnob.lock(); |
| 2295 | |
| 2296 | if ( !knob || !knob->isUserKnob() ) { |
| 2297 | return; |
| 2298 | } |
| 2299 | knob->setMultiPath(true); |
| 2300 | } |
| 2301 | |
| 2302 | void |
| 2303 | PathParam::setTable(const std::list<std::vector<std::string> >& table) |
no test coverage detected