로딩중...
검색중...
일치하는것 없음
filterable.hpp
이 파일의 문서화 페이지로 가기
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.