Revision history of "CPP/Functor"

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) 11:54, 25 February 2011Daviddoria (Talk | contribs). . (749 bytes) (+749). . (Created page with '==Functor.cpp== <source lang="cpp"> #include <iostream> struct Function { virtual double operator() (const double x, const double& y) const = 0; }; struct Add : public Functi…')