Files
UltimMC_Launcher/launcher/pathmatcher/IPathMatcher.h
Sebastian-byte 65d3068e9f Fix conflict
2021-07-25 18:34:28 -05:00

13 lines
210 B
C++

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