EstervQrCode 1.1.1
Library for qr code manipulation
logtag.hpp
1 // This file is part of OpenCV project.
2 // It is subject to the license terms in the LICENSE file found in the top-level directory
3 // of this distribution and at http://opencv.org/license.html.
4 
5 #ifndef OPENCV_CORE_LOGTAG_HPP
6 #define OPENCV_CORE_LOGTAG_HPP
7 
8 #include "opencv2/core/cvstd.hpp"
9 #include "logger.defines.hpp"
10 
11 namespace cv {
12 namespace utils {
13 namespace logging {
14 
15 struct LogTag
16 {
17  const char* name;
19 
20  inline LogTag(const char* _name, LogLevel _level)
21  : name(_name)
22  , level(_level)
23  {}
24 };
25 
26 }}}
27 
28 #endif
LogLevel
Supported logging levels and their semantic.
Definition: logger.defines.hpp:25
"black box" representation of the file storage associated with a file on disk.
Definition: calib3d.hpp:441
Definition: logtag.hpp:16
LogLevel level
Definition: logtag.hpp:18
const char * name
Definition: logtag.hpp:17
LogTag(const char *_name, LogLevel _level)
Definition: logtag.hpp:20