| 51 | struct Hdf5ColumnData |
| 52 | { |
| 53 | Hdf5ColumnData(const std::string& name, const H5::PredType predType) |
| 54 | : name(name) |
| 55 | , predType(predType) |
| 56 | { } |
| 57 | |
| 58 | const std::string name; |
| 59 | const H5::PredType predType; |
nothing calls this directly
no outgoing calls
no test coverage detected