Skip to content
Snippets Groups Projects
Commit 2a9729fd authored by Norihiro Watanabe's avatar Norihiro Watanabe
Browse files

[PCS/LIE] replace the pragma once with include guard

parent 71983f06
No related branches found
No related tags found
No related merge requests found
...@@ -7,7 +7,8 @@ ...@@ -7,7 +7,8 @@
* *
*/ */
#pragma once #ifndef PROCESSLIB_SMALLDEFORMATION_WITH_LIE_COMMON_FRACTUREPROPERTY_H_
#define PROCESSLIB_SMALLDEFORMATION_WITH_LIE_COMMON_FRACTUREPROPERTY_H_
#include <Eigen/Eigen> #include <Eigen/Eigen>
...@@ -52,3 +53,5 @@ inline void setFractureProperty(unsigned dim, MeshLib::Element const& e, ...@@ -52,3 +53,5 @@ inline void setFractureProperty(unsigned dim, MeshLib::Element const& e,
} // namespace SmallDeformationWithLIE } // namespace SmallDeformationWithLIE
} // namespace ProcessLib } // namespace ProcessLib
#endif // PROCESSLIB_SMALLDEFORMATION_WITH_LIE_COMMON_FRACTUREPROPERTY_H_
...@@ -7,7 +7,8 @@ ...@@ -7,7 +7,8 @@
* *
*/ */
#pragma once #ifndef PROCESSLIB_SMALLDEFORMATION_WITH_LIE_COMMON_HMATRIXPOLICYTYPE_H_
#define PROCESSLIB_SMALLDEFORMATION_WITH_LIE_COMMON_HMATRIXPOLICYTYPE_H_
#include "NumLib/Fem/ShapeMatrixPolicy.h" #include "NumLib/Fem/ShapeMatrixPolicy.h"
...@@ -62,3 +63,4 @@ void computeHMatrix(N_Type const& N, HMatrixType& H) ...@@ -62,3 +63,4 @@ void computeHMatrix(N_Type const& N, HMatrixType& H)
} // namespace ProcessLib } // namespace ProcessLib
#endif // PROCESSLIB_SMALLDEFORMATION_WITH_LIE_COMMON_HMATRIXPOLICYTYPE_H_
...@@ -6,7 +6,8 @@ ...@@ -6,7 +6,8 @@
* http://www.opengeosys.org/project/license * http://www.opengeosys.org/project/license
*/ */
#pragma once #ifndef PROCESSLIB_SMALLDEFORMATION_WITH_LIE_COMMON_LEVELSETFUNCTION_H_
#define PROCESSLIB_SMALLDEFORMATION_WITH_LIE_COMMON_LEVELSETFUNCTION_H_
namespace ProcessLib namespace ProcessLib
{ {
...@@ -24,3 +25,5 @@ double calculateLevelSetFunction( ...@@ -24,3 +25,5 @@ double calculateLevelSetFunction(
} // SmallDeformationWithLIE } // SmallDeformationWithLIE
} // ProcessLib } // ProcessLib
#endif // PROCESSLIB_SMALLDEFORMATION_WITH_LIE_COMMON_LEVELSETFUNCTION_H_
...@@ -6,7 +6,8 @@ ...@@ -6,7 +6,8 @@
* http://www.opengeosys.org/project/license * http://www.opengeosys.org/project/license
*/ */
#pragma once #ifndef PROCESSLIB_SMALLDEFORMATION_WITH_LIE_COMMON_MESHUTILS_H_
#define PROCESSLIB_SMALLDEFORMATION_WITH_LIE_COMMON_MESHUTILS_H_
#include <vector> #include <vector>
...@@ -39,3 +40,5 @@ void getFractureMatrixDataInMesh( ...@@ -39,3 +40,5 @@ void getFractureMatrixDataInMesh(
} // namespace SmallDeformationWithLIE } // namespace SmallDeformationWithLIE
} // namespace ProcessLib } // namespace ProcessLib
#endif // PROCESSLIB_SMALLDEFORMATION_WITH_LIE_COMMON_MESHUTILS_H_
...@@ -6,7 +6,8 @@ ...@@ -6,7 +6,8 @@
* http://www.opengeosys.org/project/license * http://www.opengeosys.org/project/license
*/ */
#pragma once #ifndef PROCESSLIB_SMALLDEFORMATION_WITH_LIE_COMMON_UTILS_H_
#define PROCESSLIB_SMALLDEFORMATION_WITH_LIE_COMMON_UTILS_H_
#include <Eigen/Eigen> #include <Eigen/Eigen>
...@@ -40,3 +41,5 @@ MathLib::Point3d computePhysicalCoordinates(MeshLib::Element const&e, Eigen::Mat ...@@ -40,3 +41,5 @@ MathLib::Point3d computePhysicalCoordinates(MeshLib::Element const&e, Eigen::Mat
} // namespace SmallDeformationWithLIE } // namespace SmallDeformationWithLIE
} // namespace ProcessLib } // namespace ProcessLib
#endif
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment