NOISSUE Flatten gui and logic libraries into MultiMC
This commit is contained in:
12
launcher/pathmatcher/IPathMatcher.h
Normal file
12
launcher/pathmatcher/IPathMatcher.h
Normal file
@ -0,0 +1,12 @@
|
||||
#pragma once
|
||||
#include <memory>
|
||||
|
||||
class IPathMatcher
|
||||
{
|
||||
public:
|
||||
typedef std::shared_ptr<IPathMatcher> Ptr;
|
||||
|
||||
public:
|
||||
virtual ~IPathMatcher(){};
|
||||
virtual bool matches(const QString &string) const = 0;
|
||||
};
|
Reference in New Issue
Block a user