17#define MODERN_STL_STREAMS
64 REPOSITORY = (1 << 13),
72 static type
const ANY;
74 typedef std::uint8_t verbosity;
84 static Debug::type
value(std::string
const& val);
89 static void showLevel(std::ostream& o, type level)
noexcept;
92 static void showTags(std::ostream& o)
noexcept;
94 friend std::ostream& operator<<(std::ostream& os, Debug::type level )
noexcept;
96 static std::string str( Debug::type level )
noexcept;
102void operator|=(Debug::type& d1, Debug::type d2)
noexcept
104 d1 =
static_cast<Debug::type
>(d1 | d2);
107std::ostream& operator<<(std::ostream& o, Debug::type t)
noexcept;
109#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