| 2269 | } |
| 2270 | |
| 2271 | void |
| 2272 | PathParam::setAsMultiPathTable() |
| 2273 | { |
| 2274 | boost::shared_ptr<KnobPath> knob = _sKnob.lock(); |
| 2275 | |
| 2276 | if ( !knob || !knob->isUserKnob() ) { |
| 2277 | return; |
| 2278 | } |
| 2279 | knob->setMultiPath(true); |
| 2280 | } |
| 2281 | |
| 2282 | void |
| 2283 | PathParam::setTable(const std::list<std::vector<std::string> >& table) |
no test coverage detected