Revision 981b6ac37dbe87acc433087b9dc82df8a7a4b7ee authored by Dominik Kern on 08 November 2021, 08:48:07 UTC, committed by Dominik Kern on 08 November 2021, 08:48:07 UTC
mention plane strain in smalldef verification example (tiny change)

See merge request ogs/ogs!3873
2 parent s b07d415 + 66570a2
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