2015-08-18 01:25:24 +01:00
|
|
|
#pragma once
|
|
|
|
#include <memory>
|
|
|
|
|
|
|
|
class IPathMatcher
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
typedef std::shared_ptr<IPathMatcher> Ptr;
|
|
|
|
|
|
|
|
public:
|
|
|
|
virtual ~IPathMatcher(){};
|
2015-10-10 04:55:55 +01:00
|
|
|
virtual bool matches(const QString &string) const = 0;
|
2015-08-18 01:25:24 +01:00
|
|
|
};
|