EstervQrCode
2.0.0
Library for qr code manipulation
Loading...
Searching...
No Matches
build
release
_deps
opencv-src
include
opencv4
opencv2
core
utils
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
;
18
LogLevel
level
;
19
20
inline
LogTag
(
const
char
* _name,
LogLevel
_level)
21
:
name
(_name)
22
,
level
(_level)
23
{}
24
};
25
26
}}}
27
28
#endif
cv::utils::logging::LogLevel
LogLevel
Supported logging levels and their semantic.
Definition
logger.defines.hpp:25
cv
"black box" representation of the file storage associated with a file on disk.
Definition
calib3d.hpp:441
cv::utils::logging::LogTag
Definition
logtag.hpp:16
cv::utils::logging::LogTag::level
LogLevel level
Definition
logtag.hpp:18
cv::utils::logging::LogTag::name
const char * name
Definition
logtag.hpp:17
cv::utils::logging::LogTag::LogTag
LogTag(const char *_name, LogLevel _level)
Definition
logtag.hpp:20