| 13876 | } |
| 13877 | |
| 13878 | SectionTracker::SectionTracker( NameAndLocation const& nameAndLocation, TrackerContext& ctx, ITracker* parent ) |
| 13879 | : TrackerBase( nameAndLocation, ctx, parent ) |
| 13880 | { |
| 13881 | if( parent ) { |
| 13882 | while( !parent->isSectionTracker() ) |
| 13883 | parent = &parent->parent(); |
| 13884 | |
| 13885 | SectionTracker& parentSection = static_cast<SectionTracker&>( *parent ); |
| 13886 | addNextFilters( parentSection.m_filters ); |
| 13887 | } |
| 13888 | } |
| 13889 | |
| 13890 | bool SectionTracker::isComplete() const { |
| 13891 | bool complete = true; |
nothing calls this directly
no test coverage detected