From 47e37635f50c09b4f9a9ee7699e3120bab3e4088 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Petr=20Mr=C3=A1zek?= Date: Sun, 10 Apr 2016 04:29:29 +0200 Subject: NOISSUE split GUI stuff from logic library --- libraries/logic/pathmatcher/IPathMatcher.h | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 libraries/logic/pathmatcher/IPathMatcher.h (limited to 'libraries/logic/pathmatcher/IPathMatcher.h') 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 + +class IPathMatcher +{ +public: + typedef std::shared_ptr Ptr; + +public: + virtual ~IPathMatcher(){}; + virtual bool matches(const QString &string) const = 0; +}; -- cgit v1.2.3