mirror of
https://github.com/slsdetectorgroup/aare.git
synced 2025-06-06 21:00:41 +02:00
14 lines
230 B
C++
14 lines
230 B
C++
#include "FileFactory.hpp"
|
|
|
|
class JsonFileFactory: public FileFactory
|
|
{
|
|
private:
|
|
/* data */
|
|
public:
|
|
File loadFile() override;
|
|
void parse_metadata(File&) override;
|
|
JsonFileFactory(std::filesystem::path fpath);
|
|
|
|
};
|
|
|