summaryrefslogtreecommitdiffstats
path: root/api/logic/pathmatcher/FSTreeMatcher.h
blob: 361924af49cc72633578ad8e853aecbca3afac8e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#pragma once

#include "IPathMatcher.h"
#include <SeparatorPrefixTree.h>
#include <QRegularExpression>

class FSTreeMatcher : public IPathMatcher
{
public:
    virtual ~FSTreeMatcher() {};
    FSTreeMatcher(SeparatorPrefixTree<'/'> & tree) : m_fsTree(tree)
    {
    }

    virtual bool matches(const QString &string) const override
    {
        return m_fsTree.covers(string);
    }

    SeparatorPrefixTree<'/'> & m_fsTree;
};