| 1 | /* |
| 2 | * HDF5_loader.hpp |
| 3 | * |
| 4 | * Created on: May 1, 2017 |
| 5 | * Author: i-bird |
| 6 | */ |
| 7 | |
| 8 | #ifndef OPENFPM_IO_SRC_HDF5_WR_HDF5_READER_HPP_ |
| 9 | #define OPENFPM_IO_SRC_HDF5_WR_HDF5_READER_HPP_ |
| 10 | |
| 11 | #include "VCluster/VCluster.hpp" |
| 12 | |
| 13 | template <unsigned int type> |
| 14 | class HDF5_reader |
| 15 | { |
| 16 | void load() |
| 17 | { |
| 18 | std::cerr << __FILE__ << ":" << __LINE__ << " Error: we do not know how to write this type of data" << std::endl; |
| 19 | } |
| 20 | }; |
| 21 | |
| 22 | #include "HDF5_reader_vd.hpp" |
| 23 | #include "HDF5_reader_gd.hpp" |
| 24 | |
| 25 | #endif /* OPENFPM_IO_SRC_HDF5_WR_HDF5_READER_HPP_ */ |
| 26 | |