[Compbench-devel] CompBenchmarks++/libcompbenchmarks/CEL CEL-Cmp.h, 1.1, 1.2 CEL-Version.h, 1.2, 1.
Brought to you by:
xfred
From: Frederic T. <xf...@us...> - 2007-03-11 18:48:34
|
Update of /cvsroot/compbench/CompBenchmarks++/libcompbenchmarks/CEL In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv21814 Modified Files: CEL-Cmp.h CEL-Version.h Log Message: Evaluate() renamed to evaluate(); Index: CEL-Version.h =================================================================== RCS file: /cvsroot/compbench/CompBenchmarks++/libcompbenchmarks/CEL/CEL-Version.h,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** CEL-Version.h 6 Mar 2007 19:31:15 -0000 1.2 --- CEL-Version.h 11 Mar 2007 18:48:30 -0000 1.3 *************** *** 29,38 **** virtual std::string xmlEntityName(void); virtual std::string xmlValue(void); public: CelVersion(std::string _version); - virtual std::string Evaluate(void); - virtual ~CelVersion(); }; --- 29,37 ---- virtual std::string xmlEntityName(void); virtual std::string xmlValue(void); + virtual std::string evaluate(void); public: CelVersion(std::string _version); virtual ~CelVersion(); }; Index: CEL-Cmp.h =================================================================== RCS file: /cvsroot/compbench/CompBenchmarks++/libcompbenchmarks/CEL/CEL-Cmp.h,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** CEL-Cmp.h 5 Mar 2007 20:32:39 -0000 1.1 --- CEL-Cmp.h 11 Mar 2007 18:48:30 -0000 1.2 *************** *** 26,34 **** protected: virtual std::string xmlEntityName(void); public: CelCmpEq(); - virtual std::string Evaluate(void); - virtual ~CelCmpEq(); }; --- 26,34 ---- protected: virtual std::string xmlEntityName(void); + virtual std::string evaluate(void); + public: CelCmpEq(); virtual ~CelCmpEq(); }; *************** *** 39,47 **** protected: virtual std::string xmlEntityName(void); public: CelCmpAE(); - virtual std::string Evaluate(void); - virtual ~CelCmpAE(); }; --- 39,47 ---- protected: virtual std::string xmlEntityName(void); + virtual std::string evaluate(void); + public: CelCmpAE(); virtual ~CelCmpAE(); }; |