Revision a8eaac03e49a3da0b71366e98c819d352811ec87 authored by Dmitry Yu. Naumov on 18 March 2021, 15:02:21 UTC, committed by Dmitry Yu. Naumov on 18 March 2021, 15:02:21 UTC
HM fixed stress split implementation

See merge request ogs/ogs!3476
2 parent s 2823eab + 79041f1
Raw File
Point.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
 *
 */

#pragma once

#include "TemplateElement.h"
#include "PointRule1.h"

extern template class MeshLib::TemplateElement<MeshLib::PointRule1>;

namespace MeshLib
{
    using Point = TemplateElement<PointRule1>;
}
back to top