21 #define QX_DEFINE_CATEGORY(name, ...) constexpr qx::category name = qx::category(QX_TEXT(#name), ##__VA_ARGS__)
29 #define QX_DEFINE_FILE_CATEGORY(_category) \
31 constexpr const qx::category& qx::details::get_file_category<qx::djb2a_hash(QX_SHORT_FILE, 0)>() noexcept \
40 #define QX_FILE_CATEGORY() qx::details::get_file_category<qx::djb2a_hash(QX_SHORT_FILE, 0)>()
57 static constexpr
auto kDefaultColor = color::white();
71 constexpr
explicit category(string_view svName,
const color& categoryColor = kDefaultColor) noexcept;
85 constexpr string_view
get_name()
const noexcept;
101 color m_Color = kDefaultColor;
102 string_view m_svName;
103 verbosity m_Verbosity = QX_CONF_COMPILE_TIME_VERBOSITY;
A category is a class that identifies a particular piece of code. This code can be located in differe...
constexpr string_view get_name() const noexcept
Get category name.
constexpr category set_verbosity(verbosity eVerbosity) const noexcept
Create new category from this one with custom verbosity.
constexpr const color & get_color() const noexcept
Get category color.
constexpr verbosity get_verbosity() const noexcept
Get category verbosity.