PrismLauncher/launcher/pathmatcher/IPathMatcher.h

14 lines
229 B
C
Raw Normal View History

#pragma once
#include <memory>
2021-11-03 14:45:42 +00:00
#include <QString>
class IPathMatcher
{
public:
2018-07-15 13:51:05 +01:00
typedef std::shared_ptr<IPathMatcher> Ptr;
public:
2018-07-15 13:51:05 +01:00
virtual ~IPathMatcher(){};
virtual bool matches(const QString &string) const = 0;
};