| 6193 | std::vector<std::string> m_filters; |
| 6194 | public: |
| 6195 | SectionTracker( NameAndLocation const& nameAndLocation, TrackerContext& ctx, ITracker* parent ) |
| 6196 | : TrackerBase( nameAndLocation, ctx, parent ) |
| 6197 | { |
| 6198 | if( parent ) { |
| 6199 | while( !parent->isSectionTracker() ) |
| 6200 | parent = &parent->parent(); |
| 6201 | |
| 6202 | SectionTracker& parentSection = static_cast<SectionTracker&>( *parent ); |
| 6203 | addNextFilters( parentSection.m_filters ); |
| 6204 | } |
| 6205 | } |
| 6206 | virtual ~SectionTracker(); |
| 6207 | |
| 6208 | virtual bool isSectionTracker() const CATCH_OVERRIDE { return true; } |
nothing calls this directly
no test coverage detected