Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:00:06

0001 #ifndef XDAQ_COMPAT
0002 #define XDAQ_COMPAT
0003 
0004 #ifndef HAVE_XDAQ
0005 #include <string>   // std::string
0006 #include <cstdarg>  // va_list, va_start
0007 #include <ostream>  // std::ostream
0008 
0009 /* Replace log4cplus::Logger */
0010 namespace log4cplus {
0011   typedef std::ostream* Logger;
0012 }
0013 
0014 namespace toolbox {
0015   std::string toString(const char* format, ...);
0016 }
0017 
0018 #endif  // HAVE_XDAQ
0019 
0020 #endif  // XDAQ_COMPAT