| 4507 | } |
| 4508 | |
| 4509 | void |
| 4510 | KnobHolder::getUserPages(std::list<KnobPage*>& userPages) const { |
| 4511 | const KnobsVec& knobs = getKnobs(); |
| 4512 | |
| 4513 | for (KnobsVec::const_iterator it = knobs.begin(); it != knobs.end(); ++it) { |
| 4514 | if ( (*it)->isUserKnob() ) { |
| 4515 | KnobPage* isPage = dynamic_cast<KnobPage*>( it->get() ); |
| 4516 | if (isPage) { |
| 4517 | userPages.push_back(isPage); |
| 4518 | } |
| 4519 | } |
| 4520 | } |
| 4521 | } |
| 4522 | |
| 4523 | KnobIPtr |
| 4524 | KnobHelper::createDuplicateOnHolder(KnobHolder* otherHolder, |
no test coverage detected