PrismLauncher/launcher/pathmatcher/IPathMatcher.h
Sefa Eyeoglu 91ba4cf75e
chore: reformat
Signed-off-by: Sefa Eyeoglu <contact@scrumplex.net>
2023-08-14 18:16:53 +02:00

13 lines
235 B
C++

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