Update of /cvsroot/compbench/CompBenchmarks++/libcompbenchmarks/CEL
In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv395
Modified Files:
CEL-Function.cpp CEL-Function.h
Log Message:
CBM::celFunctionGet() made public.
Index: CEL-Function.cpp
===================================================================
RCS file: /cvsroot/compbench/CompBenchmarks++/libcompbenchmarks/CEL/CEL-Function.cpp,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** CEL-Function.cpp 18 Mar 2007 21:47:18 -0000 1.3
--- CEL-Function.cpp 9 Apr 2007 10:06:39 -0000 1.4
***************
*** 11,23 ****
using namespace CBM;
- typedef struct {
- std::string name;
- CBM::CelAtom *function;
- } celFunction_t;
-
-
std::vector<celFunction_t*> celFunctions;
! celFunction_t *celFunctionGet(std::string _name)
{
int i;
--- 11,17 ----
using namespace CBM;
std::vector<celFunction_t*> celFunctions;
! celFunction_t *CBM::celFunctionGet(std::string _name)
{
int i;
Index: CEL-Function.h
===================================================================
RCS file: /cvsroot/compbench/CompBenchmarks++/libcompbenchmarks/CEL/CEL-Function.h,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** CEL-Function.h 18 Mar 2007 21:47:18 -0000 1.3
--- CEL-Function.h 9 Apr 2007 10:06:39 -0000 1.4
***************
*** 13,16 ****
--- 13,24 ----
namespace CBM {
+ typedef struct {
+ std::string name;
+ CBM::CelAtom *function;
+ } celFunction_t;
+
+
+ celFunction_t *celFunctionGet(std::string _name);
+
void CELFunctionDone(void);
|