From 00000be787ecc4fa6cdeebe67852729e4a841a45 Mon Sep 17 00:00:00 2001 From: Thomas Fischer <thomas.fischer@ufz.de> Date: Thu, 27 Sep 2012 09:52:44 +0200 Subject: [PATCH] added typedef for first order Hex in Hex.cpp --- MeshLib/Elements/Hex.h | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 MeshLib/Elements/Hex.h diff --git a/MeshLib/Elements/Hex.h b/MeshLib/Elements/Hex.h new file mode 100644 index 00000000000..e21fbf2c31f --- /dev/null +++ b/MeshLib/Elements/Hex.h @@ -0,0 +1,21 @@ +/** + * 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 Hex.h + * + * Created on Sep 27, 2012 by Thomas Fischer + */ + +#ifndef HEX_H_ +#define HEX_H_ + +#include "TemplateHex.h" + +namespace MeshLib { +typedef TemplateHex<1,8> Hex; +} + +#endif /* HEX_H_ */ -- GitLab