mrdocs::Config::includeSymbols
Symbol patterns to include
Synopsis
Declared in <mrdocs/Config.hpp>
std::vector<SymbolGlobPattern> includeSymbols;
Description
If any patterns are defined here, only symbols that match one of these patterns are extracted.
The patterns are applied to the fully qualified name of the symbol without any leading "::".
A single "*" will match all symbols in the namespace.
Double "**" will match all symbols in the namespace and its subnamespaces.
The patterns also support "?" for any chars, "[<chars>]" for charsets, "<chars>" for inverted charsets, and "{<glob>,...}" for alternatives.
Created with MrDocs