Loading...
Searching...
No Matches
filterable.hpp
Go to the documentation of this file.
1
2#pragma once
3
4#include "clog/common/dep.hpp"
5
6namespace by {
17 class _nout filterable {
18 public:
19 virtual ~filterable() {}
20
21 public:
28 virtual nbool filt(errLv::level lv, const std::string& tag) const = 0;
29 };
30}
Interface for objects that can filter log messages.
Definition filterable.hpp:17
virtual nbool filt(errLv::level lv, const std::string &tag) const =0
Determines whether a log entry should be filtered out.