18 lines
259 B
C++
18 lines
259 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
|
|
namespace fesa::io {
|
|
|
|
class Hdf5ResultWriter {
|
|
public:
|
|
explicit Hdf5ResultWriter(std::string file_path);
|
|
|
|
const std::string& filePath() const noexcept;
|
|
|
|
private:
|
|
std::string file_path_;
|
|
};
|
|
|
|
} // namespace fesa::io
|