diff --git a/MeshLib/Elements/Prism.h b/MeshLib/Elements/Prism.h new file mode 100644 index 0000000000000000000000000000000000000000..0a442bc296570f5cd65333faea62fab7319de8c7 --- /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_ */