mirror of
https://github.com/slsdetectorgroup/aare.git
synced 2025-06-14 08:17:13 +02:00
9 lines
268 B
C++
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);
|
|
}; |