00001 #ifndef IVIRTUALTOOL_H 00002 #define IVIRTUALTOOL_H 00003 00004 #include "GaudiKernel/IAlgTool.h" 00005 class IVirtualTool : virtual public IAlgTool { 00006 public: 00007 static const InterfaceID& interfaceID(); 00008 00009 public: 00010 virtual StatusCode doSomething( double& result ) = 0; 00011 }; 00012 00013 #endif // IVIRTUALTOOL_H