#pragma once #include #include namespace fs { class PathFilter { public: PathFilter(std::string_view filterPath); bool is_filtered(std::string_view path); private: std::vector m_paths{}; }; }