PrismLauncher/launcher/pathmatcher/IPathMatcher.h
Sefa Eyeoglu 1d468ac35a
chore: reformat
Signed-off-by: Sefa Eyeoglu <contact@scrumplex.net>
2023-08-02 18:35:35 +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;
};