/* Generated file - edit enums.py instead! */ namespace sigrok { template<> const SR_API std::map EnumValue::_values; /** Log verbosity level */ class SR_API LogLevel : public EnumValue { public: /** Output no messages at all. */ static const LogLevel * const NONE; /** Output error messages. */ static const LogLevel * const ERR; /** Output warnings. */ static const LogLevel * const WARN; /** Output informational messages. */ static const LogLevel * const INFO; /** Output debug messages. */ static const LogLevel * const DBG; /** Output very noisy debug messages. */ static const LogLevel * const SPEW; /** Output no messages at all. */ static const LogLevel * const NONE; /** Output error messages. */ static const LogLevel * const ERR; /** Output warnings. */ static const LogLevel * const WARN; /** Output informational messages. */ static const LogLevel * const INFO; /** Output debug messages. */ static const LogLevel * const DBG; /** Output very noisy debug messages. */ static const LogLevel * const SPEW; protected: LogLevel(enum sr_loglevel id, const char name[]) : EnumValue(id, name) {} static const LogLevel _NONE; static const LogLevel _ERR; static const LogLevel _WARN; static const LogLevel _INFO; static const LogLevel _DBG; static const LogLevel _SPEW; static const LogLevel _NONE; static const LogLevel _ERR; static const LogLevel _WARN; static const LogLevel _INFO; static const LogLevel _DBG; static const LogLevel _SPEW; }; // etc.