Skip to content
Snippets Groups Projects
Point.h 543 B
Newer Older
  • Learn to ignore specific revisions
  • Dmitri Naumov's avatar
    Dmitri Naumov committed
    /**
     * \copyright
    
     * Copyright (c) 2012-2016, OpenGeoSys Community (http://www.opengeosys.org)
    
    Dmitri Naumov's avatar
    Dmitri Naumov committed
     *            Distributed under a Modified BSD License.
     *              See accompanying file LICENSE.txt or
     *              http://www.opengeosys.org/project/license
     *
     */
    
    #ifndef MESHLIB_POINT_H_
    #define MESHLIB_POINT_H_
    
    #include "TemplateElement.h"
    #include "PointRule1.h"
    
    extern template class MeshLib::TemplateElement<MeshLib::PointRule1>;
    
    namespace MeshLib
    {
    
        using Point = TemplateElement<PointRule1>;
    
    Dmitri Naumov's avatar
    Dmitri Naumov committed
    }
    
    #endif  // MESHLIB_POINT_H_