--- /dev/null
+New: A new HDF5 interface has been added. The Hierarchical Data Format (HDF) is
+a cross platform and a high I/O performance format designed to store large
+amounts of data. It supports serial and MPI I/O access. The deal.II's HDF5
+interface can be used to write and read data, such the results of a simulation,
+in a HDF5 file.
+<br>
+(Daniel Garcia-Sanchez, 2019/01/09)
// ---------------------------------------------------------------------
//
-// Copyright (C) 2018 by the deal.II authors
+// Copyright (C) 2018 - 2019 by the deal.II authors
//
// This file is part of the deal.II library.
//
* concurrency. To achieve high parallel performance with HDF5, we advice to use
* HDF5 with MPI.
*
- * @author Daniel Garcia-Sanchez, 2018
+ * @author Daniel Garcia-Sanchez, 2018, 2019.
*/
// clang-format on
namespace HDF5
/**
* Base class for the HDF5 objects.
*
- * @author Daniel Garcia-Sanchez, 2018
+ * @author Daniel Garcia-Sanchez, 2018, 2019.
*/
class HDF5Object
{
/**
* This class implements an HDF5 DataSet.
*
- * @author Daniel Garcia-Sanchez, 2018
+ * @author Daniel Garcia-Sanchez, 2018, 2019.
*/
class DataSet : public HDF5Object
{
/**
* This class implements an HDF5 Group
*
- * @author Daniel Garcia-Sanchez, 2018
+ * @author Daniel Garcia-Sanchez, 2018,2019.
*/
class Group : public HDF5Object
{
/**
* This class implements an HDF5 File
*
- * @author Daniel Garcia-Sanchez, 2018
+ * @author Daniel Garcia-Sanchez, 2018, 2019.
*/
class File : public Group
{