The Gaudi Framework  v30r3 (a5ef0a68)
FileReadTool.h
Go to the documentation of this file.
1 #ifndef _FILEREADTOOL_H
2 #define _FILEREADTOOL_H
3 
4 #include "GaudiKernel/AlgTool.h"
6 
16 struct FileReadTool : extends<AlgTool, IFileAccess> {
18  using extends::extends;
19 
20  std::unique_ptr<std::istream> open( const std::string& url ) override;
21 
23  const std::vector<std::string>& protocols() const override;
24 };
25 
26 #endif // _FILEREADTOOL_H
const std::vector< std::string > & protocols() const override
Protocols supported by the instance.
STL class.
std::unique_ptr< std::istream > open(const std::string &url) override
Definition: FileReadTool.cpp:6
STL class.
Base class used to extend a class implementing other interfaces.
Definition: extends.h:10
Basic implementation of the IFileAccess interface.
Definition: FileReadTool.h:16