5be80df1ee
Signed-off-by: LocalSpook <56512186+LocalSpook@users.noreply.github.com>
13 lines
235 B
C++
13 lines
235 B
C++
#pragma once
|
|
#include <QString>
|
|
#include <memory>
|
|
|
|
class IPathMatcher {
|
|
public:
|
|
using Ptr = std::shared_ptr<IPathMatcher>;
|
|
|
|
public:
|
|
virtual ~IPathMatcher() {}
|
|
virtual bool matches(const QString& string) const = 0;
|
|
};
|