| Report problems to ATLAS LXR Team (with time and IP address indicated) |
|
[ source navigation ] [ diff markup ] [ identifier search ] [ general search ] |
||||
|
||||||
| Links to LXR source navigation pages for stable releases | [ 12.*.* ] [ 13.*.* ] [ 14.*.* ] [ 15.*.* ] | |||||
001 // $Id: IGenericTool.h,v 1.1 2008/07/17 13:35:06 marcocle Exp $ 002 #ifndef GAUDIALG_IGENERICTOOL_H 003 #define GAUDIALG_IGENERICTOOL_H 1 004 005 // Include files 006 #include "GaudiKernel/IAlgTool.h" 007 008 static const InterfaceID IID_IGenericTool("IGenericTool", 1, 1); 009 010 /** @class IGenericTool IGenericTool.h GaudiAlg/IGenericTool.h 011 * General purpose interface class for tools that "do something" 012 * 013 * @author Marco Cattaneo 014 * @date 2005-12-14 015 */ 016 class IGenericTool : virtual public IAlgTool { 017 public: 018 019 /// Retrieve interface ID 020 static const InterfaceID& interfaceID() { 021 return IID_IGenericTool; 022 } 023 024 /// Do the action 025 virtual void execute() = 0; 026 }; 027 #endif // KERNEL_INORMALIZETOOL_H 028
| [ source navigation ] | [ diff markup ] | [ identifier search ] | [ general search ] |
| Due to the LXR bug, the updates fail sometimes to remove references to deleted files. The Saturday's full rebuilds fix these problems | |
| This page was automatically generated by the LXR engine. |
|