Files
aare/include/file_io/RawFileFactory.hpp
2024-03-06 21:08:52 +01:00

9 lines
268 B
C++

#include "file_io/File.hpp"
#include <filesystem>
template<DetectorType detector,typename DataType>
class RawFileFactory{
public:
// RawFileFactory();
// ~RawFileFactory();
File<detector,DataType> loadFile(std::filesystem::path fpath);
};