1#ifndef BANDIT_FILTER_CHAIN_H
2#define BANDIT_FILTER_CHAIN_H
3
4#include <string>
5#include <vector>
6
7namespace bandit {
8 namespace detail {
9 struct filter_chain_element {
10 std::string pattern;
11 bool skip;
12 };
13
14 using filter_chain_t = std::vector<filter_chain_element>;
15 }
16}
17#endif
18