JKSV/include/fs/PathFilter.hpp
2025-08-06 19:35:23 -04:00

19 lines
303 B
C++

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