From 47899e625fe74c7bf1d475809d3f1f0c38ae1802 Mon Sep 17 00:00:00 2001 From: Thomas Fischer <thomas.fischer@ufz.de> Date: Thu, 27 Sep 2012 10:01:30 +0200 Subject: [PATCH] added typedef for first order Prism in Prism.h --- MeshLib/Elements/Prism.h | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 MeshLib/Elements/Prism.h diff --git a/MeshLib/Elements/Prism.h b/MeshLib/Elements/Prism.h new file mode 100644 index 00000000000..0a442bc2965 --- /dev/null +++ b/MeshLib/Elements/Prism.h @@ -0,0 +1,23 @@ +/** + * Copyright (c) 2012, OpenGeoSys Community (http://www.opengeosys.net) + * Distributed under a Modified BSD License. + * See accompanying file LICENSE.txt or + * http://www.opengeosys.org/LICENSE.txt + * + * \file Prism.h + * + * Created on Sep 27, 2012 by Thomas Fischer + */ + +#ifndef PRISM_H_ +#define PRISM_H_ + +#include "TemplatePrism.h" + +namespace MeshLib { + +typedef TemplatePrism<1,6> Prism; + +} + +#endif /* PRISM_H_ */ -- GitLab