Revision d09bc368288c3c75f9d9b99c2cdb640b8d9963b8 authored by Dmitry Yu. Naumov on 31 August 2021, 12:51:00 UTC, committed by Dmitry Yu. Naumov on 31 August 2021, 12:51:00 UTC
TH2M: Extract constitutive variables.

See merge request ogs/ogs!3763
2 parent s 4da3f20 + 7f53c0b
Raw File
SurfaceVec.h
/**
 * \file
 * \author Thomas Fischer
 * \date   2010-02-09
 * \brief  Definition of the SurfaceVec class.
 *
 * \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
 *
 */

#pragma once

#include "TemplateVec.h"
#include "Surface.h"

namespace GeoLib {

/**
 * Class SurfaceVec encapsulate a std::vector of Surfaces
 * and a name.
 * */

using SurfaceVec = TemplateVec<GeoLib::Surface>;

} // end namespace
back to top