mirror of
https://github.com/J-D-K/JKSV.git
synced 2026-07-14 07:01:05 -05:00
19 lines
303 B
C++
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{};
|
|
};
|
|
}
|