feat: add property model foundation
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
#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
|
||||
Reference in New Issue
Block a user