-------------------------------------------------------------------------
| 27 | { |
| 28 | //------------------------------------------------------------------------- |
| 29 | LineFilter::LineFilter( |
| 30 | const std::vector<std::wstring>& excludedLineRegexes, |
| 31 | bool enableLog) |
| 32 | : fileReadCount_{0} |
| 33 | , enableLog_{ enableLog } |
| 34 | { |
| 35 | for (const auto& regex : excludedLineRegexes) |
| 36 | excludedLineRegexes_.emplace_back(Tools::ToLocalString(regex)); |
| 37 | } |
| 38 | |
| 39 | //------------------------------------------------------------------------- |
| 40 | bool LineFilter::IsLineSelected( |
nothing calls this directly
no test coverage detected