blob: 8121de5cbbad3d19f46a96119beb4d53c6a57a93 (
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;
};
|