Gaudi Framework, version v25r2

Home   Generated: Wed Jun 4 2014
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
Namespaces | Classes | Functions
Gaudi::PluginService Namespace Reference

Namespaces

namespace  Details
 

Classes

class  Factory0
 Class wrapping the signature for a factory without arguments. More...
 
class  Factory1
 Class wrapping the signature for a factory with 1 argument. More...
 
class  Factory2
 Class wrapping the signature for a factory with 2 arguments. More...
 
class  Factory3
 Class wrapping the signature for a factory with 3 arguments. More...
 
class  Exception
 

Functions

GAUDIPS_API void SetDebug (int debugLevel)
 Backward compatibility with Reflex.
 
GAUDIPS_API int Debug ()
 Backward compatibility with Reflex.
 

Function Documentation

int Gaudi::PluginService::Debug ( )

Backward compatibility with Reflex.

Definition at line 369 of file PluginService.cpp.

{
using namespace Details;
switch (logger().level()) {
case Logger::Debug: return 2; break;
case Logger::Info: return 1; break;
default: return 0;
}
}
void Gaudi::PluginService::SetDebug ( int  debugLevel)

Backward compatibility with Reflex.

Definition at line 359 of file PluginService.cpp.

{
using namespace Details;
Logger& l = logger();
if (debugLevel > 1)
l.setLevel(Logger::Debug);
else if (debugLevel > 0)
l.setLevel(Logger::Info);
else l.setLevel(Logger::Warning);
}

Generated at Wed Jun 4 2014 14:49:05 for Gaudi Framework, version v25r2 by Doxygen version 1.8.2 written by Dimitri van Heesch, © 1997-2004