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