mrdocs::EnumSymbol::Scoped

Indicates whether this enum is scoped (e.g. enum class).

Synopsis

Declared in <mrdocs/Metadata/Symbol/Enum.hpp>
bool Scoped = false;

Description

If true, the enumerators are accessed with the scope resolution operator (e.g. EnumName::Enumerator).

If false, the enumerators are accessed directly (e.g. Enumerator) in the parent context.

Created with MrDocs