blob: 1d410947909cd85610c2547392558d05012ed9c7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#pragma once
#include <memory>
class IPathMatcher
{
public:
typedef std::shared_ptr<IPathMatcher> Ptr;
public:
virtual ~IPathMatcher(){};
virtual bool matches(const QString &string) const = 0;
};
|