BuGUI
BUtton Grid User Interface
Loading...
Searching...
No Matches
labels.hpp
1#pragma once
2#include <boost/preprocessor/seq/for_each.hpp>
3
4#define FOR_EACH_LABEL(macro) \
5BOOST_PP_SEQ_FOR_EACH(macro, , BOOST_FORMATED_BUGUI_LABELS)
6
7#define MAKE_ENUM(name, type, ...) \
8enum name : type { __VA_ARGS__ };
9
10#include <cstdint>
11
12namespace bugui { MAKE_ENUM(labels, uint8_t, BUGUI_LABELS); }