PrismLauncher/launcher/pathmatcher/IPathMatcher.h

13 lines
235 B
C
Raw Normal View History

#pragma once
2021-11-03 14:45:42 +00:00
#include <QString>
#include <memory>
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;
};