C++ Language/Namespace/NamespaceShortcuts
Anything defined with namespaceĀ NRNamespaceĀ {...}
will require additional qualification (writing variable giVarB
as NRNamespace::giVarB
) unless you have requested to skip that requirement on a case-by-case basis (programming usingĀ NRNamespace::giVarB;
).
Or, the qualification requirement could be skipped for an entire namespace all at once.
Additional information about namespace shortcuts (includes interactive examples)