common_util
Loading...
Searching...
No Matches
logtype.h
Go to the documentation of this file.
1
19#pragma once
20
21#include <string>
22#include <functional>
23
24namespace cutl
25{
30 enum class loglevel
31 {
40 };
41
49 using LogFuncType = std::function<void(loglevel, const std::string &)>;
50
51} // namespace cutl
std::function< void(loglevel, const std::string &)> LogFuncType
The type of log function.
Definition logtype.h:49
loglevel
The type of log level.
Definition logtype.h:31