pollymc/launcher/pathmatcher/IPathMatcher.h

14 lines
229 B
C
Raw Normal View History

#pragma once
#include <memory>
2021-11-03 20:15:42 +05:30
#include <QString>
class IPathMatcher
{
public:
2018-07-15 18:21:05 +05:30
typedef std::shared_ptr<IPathMatcher> Ptr;
public:
2018-07-15 18:21:05 +05:30
virtual ~IPathMatcher(){};
virtual bool matches(const QString &string) const = 0;
};