1
0
mirror of https://github.com/MultiMC/MultiMC5.git synced 2025-03-26 08:37:10 +00:00

13 lines
210 B
C
Raw Normal View History

#pragma once
#include <memory>
class IPathMatcher
{
public:
2018-07-15 14:51:05 +02:00
typedef std::shared_ptr<IPathMatcher> Ptr;
public:
2018-07-15 14:51:05 +02:00
virtual ~IPathMatcher(){};
virtual bool matches(const QString &string) const = 0;
};