PrismLauncher/launcher/pathmatcher/IPathMatcher.h
Rachel Powers cc41b039e6 chore: clean up after new compiler warnings
Signed-off-by: Rachel Powers <508861+Ryex@users.noreply.github.com>
2023-06-04 14:59:48 -07: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;
};