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