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