summaryrefslogtreecommitdiffstats
path: root/libraries/logic/pathmatcher/IPathMatcher.h
diff options
context:
space:
mode:
Diffstat (limited to 'libraries/logic/pathmatcher/IPathMatcher.h')
-rw-r--r--libraries/logic/pathmatcher/IPathMatcher.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/libraries/logic/pathmatcher/IPathMatcher.h b/libraries/logic/pathmatcher/IPathMatcher.h
new file mode 100644
index 00000000..1d410947
--- /dev/null
+++ b/libraries/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) const = 0;
+};