PrismLauncher/launcher/pathmatcher/IPathMatcher.h

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

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:
typedef std::shared_ptr<IPathMatcher> Ptr;
public:
virtual ~IPathMatcher(){};
virtual bool matches(const QString &string) const = 0;
};