pollymc/logic/pathmatcher/IPathMatcher.h

13 lines
195 B
C
Raw Normal View History

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