| 12060 | } |
| 12061 | |
| 12062 | SectionTracker::SectionTracker( NameAndLocation const& nameAndLocation, TrackerContext& ctx, ITracker* parent ) |
| 12063 | : TrackerBase( nameAndLocation, ctx, parent ) |
| 12064 | { |
| 12065 | if( parent ) { |
| 12066 | while( !parent->isSectionTracker() ) |
| 12067 | parent = &parent->parent(); |
| 12068 | |
| 12069 | SectionTracker& parentSection = static_cast<SectionTracker&>( *parent ); |
| 12070 | addNextFilters( parentSection.m_filters ); |
| 12071 | } |
| 12072 | } |
| 12073 | |
| 12074 | bool SectionTracker::isComplete() const { |
| 12075 | bool complete = true; |
nothing calls this directly
no test coverage detected