mirror of
https://github.com/UltimMC/Launcher.git
synced 2025-12-23 12:10:00 +00:00
NOISSUE reorganize and document libraries
This commit is contained in:
12
api/logic/pathmatcher/IPathMatcher.h
Normal file
12
api/logic/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