Update of /cvsroot/objecthandler/ObjectHandler/oh
In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv14253/oh
Modified Files:
objecthandler.hpp utilities.cpp utilities.hpp
Log Message:
autogenerate ObjectHandler code
Index: utilities.cpp
===================================================================
RCS file: /cvsroot/objecthandler/ObjectHandler/oh/utilities.cpp,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** utilities.cpp 1 Jun 2006 13:59:47 -0000 1.2
--- utilities.cpp 6 Jun 2006 09:08:27 -0000 1.3
***************
*** 44,51 ****
}
! void setLogFile(
const std::string &logFileName,
const int &logLevel) {
Logger::instance().setLogFile(logFileName, logLevel);
}
--- 44,52 ----
}
! std::string setLogFile(
const std::string &logFileName,
const int &logLevel) {
Logger::instance().setLogFile(logFileName, logLevel);
+ return logFileName;
}
Index: utilities.hpp
===================================================================
RCS file: /cvsroot/objecthandler/ObjectHandler/oh/utilities.hpp,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** utilities.hpp 1 Jun 2006 13:59:47 -0000 1.2
--- utilities.hpp 6 Jun 2006 09:08:27 -0000 1.3
***************
*** 83,87 ****
/*! Specify name of log file.
*/
! void setLogFile(
const std::string &logFileName,
const int &logLevel = 4);
--- 83,87 ----
/*! Specify name of log file.
*/
! std::string setLogFile(
const std::string &logFileName,
const int &logLevel = 4);
Index: objecthandler.hpp
===================================================================
RCS file: /cvsroot/objecthandler/ObjectHandler/oh/objecthandler.hpp,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** objecthandler.hpp 19 May 2006 15:12:41 -0000 1.1
--- objecthandler.hpp 6 Jun 2006 09:08:27 -0000 1.2
***************
*** 26,30 ****
#ifdef COMPILING_XLL
!
#include <ohxl/objecthandlerxl.hpp>
--- 26,30 ----
#ifdef COMPILING_XLL
! #pragma message("a1")
#include <ohxl/objecthandlerxl.hpp>
***************
*** 41,44 ****
--- 41,45 ----
#else
+ #pragma message("a2")
#include <oh/objecthandlerbase.hpp>
|