Photon Common Library 2.0.0-beta
A physically based renderer.
Loading...
Searching...
No Matches
logger_fwd.h
Go to the documentation of this file.
1#pragma once
2
3#include <functional>
4#include <string_view>
5
6namespace ph
7{
8
9enum class ELogLevel;
10class Logger;
11
12using LogHandler = std::function<void(ELogLevel logLevel, std::string_view logString)>;
13
14}// end namespace ph
The root for all renderer implementations.
Definition assertion.h:9
std::function< void(ELogLevel logLevel, std::string_view logString)> LogHandler
Definition logger_fwd.h:12
ELogLevel
Definition ELogLevel.h:9