diff -r d8fccb2cd802 -r 468f4c8d3d5b DITA-OT_CXX_Plugin/cxxapiref/doc/cxxFunction/cxxFunctionReimplemented.dita --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/DITA-OT_CXX_Plugin/cxxapiref/doc/cxxFunction/cxxFunctionReimplemented.dita Wed Aug 11 14:49:30 2010 +0100 @@ -0,0 +1,38 @@ + + + + + cxxFunctionReimplemented + Identifies functions that have been re-implemented. + +
+ Description

This identifies and links to functions that have been re-implemented.

+
+ + Example

Given this code:

+ class Base +{ +public: + void f(); +}; + +class Derived : public Base +{ +public: + void f(); +}; +

Then function Derived::f would have the cxxFunctionReimplemented + +element thus:

+ <cxxFunctionReimplemented href="class_base.xml#class_base_1a1b981706372d75125af29b377d33ba66">Base::f()</cxxFunctionReimplemented> +
+
+
+
+
+
+ +