diff -r d8fccb2cd802 -r 468f4c8d3d5b DITA-OT_CXX_Plugin/cxxapiref/doc/cxxFunction/cxxFunctionScopedName.dita --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/DITA-OT_CXX_Plugin/cxxapiref/doc/cxxFunction/cxxFunctionScopedName.dita Wed Aug 11 14:49:30 2010 +0100 @@ -0,0 +1,33 @@ + + + + + cxxFunctionScopedName + The scope of the function i.e. the declaration of the enclosing namespace/class/struct/union. + +
+ Description

This element describes the declaration (qualified name lookup) of the enclosing namespace/class/struct/union. For global functions this element is empty.

See ISO/IEC 14882:2003(E) Section 3.3 Declarative regions and scopes [basic.scope]

+
+ + Example

Given this code:

+ namespace N { + class C { + struct D { + int SomeFunction(); + }; + }; +}; +

+ SomeFunction would have a scoped name element:

+ <cxxFunctionScopedName>N::C::D</cxxFunctionScopedName> +
+
+
+
+
+
+ +