https://gitlab.opengeosys.org/ogs/ogs.git
Raw File
Tip revision: 841ce0cf46b743738beecbcf881ea4873e0f3838 authored by wenqing on 06 March 2023, 16:49:10 UTC
Merge branch 'partmesh_update' into 'master'
Tip revision: 841ce0c
Point.h
/**
 * \file
 * \copyright
 * Copyright (c) 2012-2023, 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