2015-08-18 05:55:24 +05:30
|
|
|
#pragma once
|
|
|
|
#include <memory>
|
2021-11-03 20:15:42 +05:30
|
|
|
#include <QString>
|
2015-08-18 05:55:24 +05:30
|
|
|
|
|
|
|
class IPathMatcher
|
|
|
|
{
|
|
|
|
public:
|
2018-07-15 18:21:05 +05:30
|
|
|
typedef std::shared_ptr<IPathMatcher> Ptr;
|
2015-08-18 05:55:24 +05:30
|
|
|
|
|
|
|
public:
|
2018-07-15 18:21:05 +05:30
|
|
|
virtual ~IPathMatcher(){};
|
|
|
|
virtual bool matches(const QString &string) const = 0;
|
2015-08-18 05:55:24 +05:30
|
|
|
};
|