From b6d455a02bd338e9dc0faa09d4d8177ecd8d569a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Petr=20Mr=C3=A1zek?= Date: Sun, 10 Apr 2016 15:53:05 +0200 Subject: NOISSUE reorganize and document libraries --- api/logic/pathmatcher/IPathMatcher.h | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 api/logic/pathmatcher/IPathMatcher.h (limited to 'api/logic/pathmatcher/IPathMatcher.h') diff --git a/api/logic/pathmatcher/IPathMatcher.h b/api/logic/pathmatcher/IPathMatcher.h new file mode 100644 index 00000000..1d410947 --- /dev/null +++ b/api/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