pollymc/api/logic/pathmatcher/IPathMatcher.h
2018-07-15 14:51:05 +02:00

13 lines
210 B
C++

#pragma once
#include <memory>
class IPathMatcher
{
public:
typedef std::shared_ptr<IPathMatcher> Ptr;
public:
virtual ~IPathMatcher(){};
virtual bool matches(const QString &string) const = 0;
};