feat(cpp-object-oriented-modular-refactoring): step 23 - hdf5-writer-modules

This commit is contained in:
KOKO\Mimi
2026-08-16 13:28:06 +09:00
parent 5e4e3f2a5b
commit feaddd9e83
15 changed files with 3004 additions and 2300 deletions
+17
View File
@@ -0,0 +1,17 @@
#ifndef FESA_IO_HDF5_HDF5_MODEL_WRITER_H_
#define FESA_IO_HDF5_HDF5_MODEL_WRITER_H_
#include <hdf5.h>
#include "fesa/model/domain.h"
#include "io/hdf5/hdf5_primitives.h"
namespace fesa::hdf5_internal {
/// @brief Writes metadata and exact model/source identity datasets.
void WriteModel(hid_t file, const Domain& domain,
const WriterModelData& model_data);
} // namespace fesa::hdf5_internal
#endif // FESA_IO_HDF5_HDF5_MODEL_WRITER_H_