1 /*=========================================================================
2  *
3  *  Copyright Insight Software Consortium
4  *
5  *  Licensed under the Apache License, Version 2.0 (the "License");
6  *  you may not use this file except in compliance with the License.
7  *  You may obtain a copy of the License at
8  *
9  *         http://www.apache.org/licenses/LICENSE-2.0.txt
10  *
11  *  Unless required by applicable law or agreed to in writing, software
12  *  distributed under the License is distributed on an "AS IS" BASIS,
13  *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  *  See the License for the specific language governing permissions and
15  *  limitations under the License.
16  *
17  *=========================================================================*/
18 #ifndef itkFEMElements_h
19 #define itkFEMElements_h
20 
21 /**
22  * \file itkFEMElements.h
23  * \brief Include all finite element classes defined in FEM toolkit.
24  *
25  * To make sure you have everything, just include this header file.
26  */
27 #include "itkFEMElement2DC0LinearLineStress.h"
28 #include "itkFEMElement2DC1Beam.h"
29 #include "itkFEMElement2DC0LinearTriangularMembrane.h"
30 #include "itkFEMElement2DC0LinearTriangularStress.h"
31 #include "itkFEMElement2DC0LinearTriangularStrain.h"
32 #include "itkFEMElement2DC0LinearQuadrilateralMembrane.h"
33 #include "itkFEMElement2DC0LinearQuadrilateralStress.h"
34 #include "itkFEMElement2DC0LinearQuadrilateralStrain.h"
35 #include "itkFEMElement3DC0LinearTetrahedronMembrane.h"
36 #include "itkFEMElement3DC0LinearTetrahedronStrain.h"
37 #include "itkFEMElement3DC0LinearHexahedronMembrane.h"
38 #include "itkFEMElement3DC0LinearHexahedronStrain.h"
39 #include "itkFEMElement2DC0QuadraticTriangularStress.h"
40 #include "itkFEMElement2DC0QuadraticTriangularStrain.h"
41 
42 #endif
43