00001 // $Id: ErrorTool.cpp,v 1.2 2006/01/10 19:53:58 hmd Exp $ 00002 // ============================================================================ 00003 // Include files 00004 // ============================================================================ 00005 // GaudiKernel 00006 // ============================================================================ 00007 #include "GaudiKernel/ToolFactory.h" 00008 // ============================================================================ 00009 // local 00010 // ============================================================================ 00011 #include "ErrorTool.h" 00012 // ============================================================================ 00013 00014 // ============================================================================ 00020 // ============================================================================ 00021 00022 // ============================================================================ 00023 // Declaration of the Tool Factory 00024 // ============================================================================ 00025 DECLARE_TOOL_FACTORY(ErrorTool) 00026 // ============================================================================ 00027 00028 // ============================================================================ 00036 // ============================================================================ 00037 ErrorTool::ErrorTool( const std::string& type, 00038 const std::string& name, 00039 const IInterface* parent ) 00040 : GaudiTool ( type, name , parent ) 00041 { 00042 declareInterface<IErrorTool>(this); 00043 }; 00044 // ============================================================================ 00045 00046 // ============================================================================ 00048 // ============================================================================ 00049 ErrorTool::~ErrorTool() {}; 00050 // ============================================================================