filterable.hpp
Go to the documentation of this file.
1
2#pragma once
3
4#include "clog/common/dep.hpp"
5
6namespace by {
11 class _nout filterable {
12 public:
13 virtual ~filterable() {}
14
15 public:
17 virtual nbool filt(errLv::level lv, const std::string& tag) const = 0;
18 };
19}
Interface for objects that can filter log messages.
Definition: filterable.hpp:11
virtual nbool filt(errLv::level lv, const std::string &tag) const =0