pollymc/launcher/pathmatcher/IPathMatcher.h
2021-11-03 15:45:42 +01:00

14 lines
229 B
C++

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