qxLib
|
#include <qx/containers/string/string_utils.h>
#include <qx/macros/common.h>
#include <qx/render/color.h>
#include <qx/verbosity.h>
#include <qx/category.inl>
Go to the source code of this file.
Classes | |
class | qx::category |
A category is a class that identifies a particular piece of code. This code can be located in different files, but united by one functionality. Objects of this class can be used in logging, asserts and profiling. More... | |
Macros | |
#define | QX_DEFINE_CATEGORY(name, ...) constexpr qx::category name = qx::category(QX_TEXT(#name), ##__VA_ARGS__) |
Define a category. More... | |
#define | QX_DEFINE_FILE_CATEGORY(_category) |
Define file category You can access this value via QX_FILE_CATEGORY() This category will not be exported via #include. More... | |
#define | QX_FILE_CATEGORY() qx::details::get_file_category<qx::djb2a_hash(QX_SHORT_FILE, 0)>() |
Get category defined in QX_DEFINE_FILE_CATEGORY If there is none, CatDefault will be used. | |
#define QX_DEFINE_CATEGORY | ( | name, | |
... | |||
) | constexpr qx::category name = qx::category(QX_TEXT(#name), ##__VA_ARGS__) |
Define a category.
name | - category name |
... | - optional category color |
Definition at line 21 of file category.h.
#define QX_DEFINE_FILE_CATEGORY | ( | _category | ) |
Define file category You can access this value via QX_FILE_CATEGORY() This category will not be exported via #include.
_category | - category to use in this file |
Definition at line 29 of file category.h.