namespace fl {
namespace test {
namespace detail { \
template <> \
struct TypeNameHolder<type> { \
static const char* name() { return str; } \
}; \
}}}
Base definition for an LED controller.
1845#define FL_TYPE_TO_STRING(type, str) \
1846 namespace fl { namespace test { namespace detail { \
1847 template <> \
1848 struct TypeNameHolder<type> { \
1849 static const char* name() { return str; } \
1850 }; \
1851 }}}