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