Inherits U.
template<class T, class U>
struct CExtraTraits< T, U >
The class can be used to specify non-standard traits set for the specific property.
Usage:
template<class U>
: public U
{
static const uint16_t m_flags = U::m_flags | SOME_FLAG;
static constexpr uint8_t m_segment = 4;
static constexpr size_t m_offset = 16;
static constexpr size_t m_size = U::m_size + 2;
static constexpr size_t m_count = U::m_count * 99;
};
Definition at line 215 of file flags.h.