#include <string.h>
#include <algorithm>
#include <array>
#include <cassert>
#include <functional>
#include <string_view>
#include <type_traits>
#include <utility>
#include <vector>
#include <cstdio>
Go to the source code of this file.
|
#define | CREATE_CUSTOM_TOKEN(name) |
| A macro from which we can create token-colors. Colors ceated this way end up in the symmetri namespace.
|
|
|
static Scheduled | symmetri::Scheduled |
|
static Started | symmetri::Started |
|
static Success | symmetri::Success |
|
static Deadlocked | symmetri::Deadlocked |
|
static Canceled | symmetri::Canceled |
|
static Paused | symmetri::Paused |
|
static Failed | symmetri::Failed |
|
◆ CREATE_CUSTOM_TOKEN
#define CREATE_CUSTOM_TOKEN |
( |
| name | ) |
|
Value: namespace symmetri \
{ \
struct name : public Token \
{ \
constexpr name() \
: Token(sym_impl::type_name<name>().data()) {} \
}; \
static inline name name; \
}
A macro from which we can create token-colors. Colors ceated this way end up in the symmetri namespace.