OpenCV 4.5.3(日本語機械翻訳)
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
"black box" representation of the file storage associated with a file on disk.
Definition: aruco.hpp:75
Definition: logtag.hpp:16