aboutsummaryrefslogtreecommitdiff
path: root/launcher/pathmatcher/FSTreeMatcher.h
blob: b84af2945d9b9f8568517e1759769bd82c4d893b (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)
    {
    }

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

    SeparatorPrefixTree<'/'> & m_fsTree;
};