Brenta Engine 1.0
Loading...
Searching...
No Matches
utils_types.hpp
1#pragma once
2
3#include <ostream>
4
5namespace Brenta
6{
7
8namespace Types
9{
10
19enum LogLevel
20{
21 DEBUG = 0,
22 INFO,
23 WARNING,
24 ERROR,
25 OUTPUT,
26 DISABLED
27};
28
29std::ostream &operator<<(std::ostream &os, const LogLevel level);
30
31} // namespace Types
32
33} // namespace Brenta