Revision history of "CPP/StaticInheritance"

From ProgrammingExamples
Jump to: navigation, search

Diff selection: Mark the radio boxes of the revisions to compare and hit enter or the button at the bottom.
Legend: (cur) = difference with latest revision, (prev) = difference with preceding revision, m = minor edit.

  • (cur | prev) 15:49, 19 December 2011Daviddoria (Talk | contribs). . (858 bytes) (+858). . (Created page with '==StaticInheritance.cpp== <source lang="cpp"> #include <iostream> class Parent { public: static double GetValue(); }; double Parent::GetValue() { return 2.0; } class Child…')