|
Gaudi Framework, version v22r2 |
| Home | Generated: Tue May 10 2011 |
00001 #ifndef GAUDIKERNEL_IDATASTORELEAVES_H 00002 #define GAUDIKERNEL_IDATASTORELEAVES_H 00003 00004 // Include Files 00005 #include "GaudiKernel/IAlgTool.h" 00006 #include <vector> 00007 00008 class DataObject; 00009 00015 class GAUDI_API IDataStoreLeaves: virtual public IAlgTool { 00016 00017 public: 00019 DeclareInterfaceID(IDataStoreLeaves,1,0); 00020 00022 typedef std::vector<DataObject*> LeavesList; 00023 00025 virtual const LeavesList & leaves() const = 0; 00026 00027 }; 00028 00029 #endif