| 11788 | } |
| 11789 | |
| 11790 | SectionTracker::SectionTracker( NameAndLocation const& nameAndLocation, TrackerContext& ctx, ITracker* parent ) |
| 11791 | : TrackerBase( nameAndLocation, ctx, parent ) |
| 11792 | { |
| 11793 | if( parent ) { |
| 11794 | while( !parent->isSectionTracker() ) |
| 11795 | parent = &parent->parent(); |
| 11796 | |
| 11797 | SectionTracker& parentSection = static_cast<SectionTracker&>( *parent ); |
| 11798 | addNextFilters( parentSection.m_filters ); |
| 11799 | } |
| 11800 | } |
| 11801 | |
| 11802 | bool SectionTracker::isComplete() const { |
| 11803 | bool complete = true; |
nothing calls this directly
no test coverage detected