diff options
Diffstat (limited to 'logic/pathmatcher/IPathMatcher.h')
-rw-r--r-- | logic/pathmatcher/IPathMatcher.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/logic/pathmatcher/IPathMatcher.h b/logic/pathmatcher/IPathMatcher.h new file mode 100644 index 00000000..806a750a --- /dev/null +++ b/logic/pathmatcher/IPathMatcher.h @@ -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) = 0; +}; |