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, 0 insertions, 12 deletions
diff --git a/libraries/logic/pathmatcher/IPathMatcher.h b/libraries/logic/pathmatcher/IPathMatcher.h
deleted file mode 100644
index 1d410947..00000000
--- a/libraries/logic/pathmatcher/IPathMatcher.h
+++ /dev/null
@@ -1,12 +0,0 @@
-#pragma once
-#include <memory>
-
-class IPathMatcher
-{
-public:
- typedef std::shared_ptr<IPathMatcher> Ptr;
-
-public:
- virtual ~IPathMatcher(){};
- virtual bool matches(const QString &string) const = 0;
-};