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