mirror of
https://github.com/MultiMC/MultiMC5.git
synced 2024-11-20 08:10:11 +00:00
14 lines
229 B
C++
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;
|
|
};
|