Revision 2298e87f0be2eda831b03d567589c6af8a910f87 authored by Dmitry Yu. Naumov on 02 December 2021, 12:26:40 UTC, committed by Dmitry Yu. Naumov on 02 December 2021, 12:26:40 UTC
Remove trivial dx/dx=1 and dxdot/dx = 1/dt

See merge request ogs/ogs!3904
2 parent s cd151e7 + f09cbe7
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