swh:1:snp:f521c49ab17ef7db6ec70b2430e1ed203f50383f
Raw File
Tip revision: 8756f74c65c0dfa43745aa9001953ea5878a607f authored by tnagel on 31 August 2021, 14:13:19 UTC
Introduced initial stress capability in MFront orthotropic linear elasticity.
Tip revision: 8756f74
DynamicSpan.h
/**
 * \file
 * \copyright
 * Copyright (c) 2012-2021, OpenGeoSys Community (http://www.opengeosys.org)
 *            Distributed under a Modified BSD License.
 *              See accompanying file LICENSE.txt or
 *              http://www.opengeosys.org/project/license
 */

namespace BaseLib
{
template <typename T>
struct DynamicSpan
{
    T* data;
    std::size_t size;
};
}  // namespace BaseLib
back to top