21 #define MODERN_STL_STREAMS
72 REPOSITORY = (1 << 13),
80 static type
const ANY;
90 static Debug::type
value(std::string
const& val);
95 static void showLevel(std::ostream& o, type level) noexcept;
98 static void showTags(std::ostream& o) noexcept;
100 friend std::ostream& operator<<(std::ostream& os, Debug::type level ) noexcept;
102 static std::string str( Debug::type level ) noexcept;
108 void operator|=(Debug::type& d1, Debug::type d2) noexcept
110 d1 =
static_cast<Debug::type
>(d1 | d2);
114 #include "DebugStream.h"
116 std::ostream& operator<<(std::ostream& o, Debug::type t) noexcept;
static Debug::type value(std::string const &val)
Definition: Debug.cc:67
static void showLevel(std::ostream &o, type level) noexcept
Definition: Debug.cc:110
static void showTags(std::ostream &o) noexcept
Definition: Debug.cc:121