https://gitlab.opengeosys.org/ogs/ogs.git
Raw File
Tip revision: 3f359feee49b7ecf3476c248845e430f11e8a049 authored by Lars Bilke on 04 September 2024, 16:22:29 UTC
6.5.3
Tip revision: 3f359fe
XdmfHdfData.h
/**
 * \file
 * \author Tobias Meisel
 * \date   2020-11-13
 * \brief  Holds all data for the combined writing of xdmf and hdf5 file
 * \copyright
 * Copyright (c) 2012-2024, OpenGeoSys Community (http://www.opengeosys.org)
 *            Distributed under a Modified BSD License.
 *              See accompanying file LICENSE.txt or
 *              http://www.opengeosys.org/project/license
 */

#pragma once

#include <boost/shared_ptr.hpp>
#include <vector>

#include "HdfData.h"
#include "XdmfData.h"

namespace MeshLib::IO
{
struct XdmfHdfData final
{
    HdfData hdf;
    XdmfData xdmf;
};
}  // namespace MeshLib::IO
back to top