17 #define MODERN_STL_STREAMS
63 REPOSITORY = (1 << 13),
71 static type
const ANY;
73 typedef uint8_t verbosity;
83 static Debug::type
value(std::string
const& val);
88 static void showLevel(std::ostream& o, type level) noexcept;
91 static void showTags(std::ostream& o) noexcept;
93 friend std::ostream& operator<<(std::ostream& os, Debug::type level ) noexcept;
95 static std::string str( Debug::type level ) noexcept;
101 void operator|=(Debug::type& d1, Debug::type d2) noexcept
103 d1 =
static_cast<Debug::type
>(d1 | d2);
106 std::ostream& operator<<(std::ostream& o, Debug::type t) noexcept;
108 #include "DebugStream.h"
static void showLevel(std::ostream &o, type level) noexcept
Definition: Debug.cc:104
static void showTags(std::ostream &o) noexcept
Definition: Debug.cc:115
static Debug::type value(std::string const &val)
Definition: Debug.cc:62