blob: 806a750af6a9018b72e8e66d78be9dce3e9b1a8e (
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) = 0;
};
|