Skip to content

Commit

Permalink
Merge pull request #11500 from KratosMultiphysics/cl/missing-includes
Browse files Browse the repository at this point in the history
[CLApplication] Missing includes
  • Loading branch information
loumalouomega authored Aug 24, 2023
2 parents 99e9d01 + 1ff0e63 commit bb82304
Showing 1 changed file with 7 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@
// System includes

// Project includes
#include "constitutive_laws_application_variables.h"
#include "custom_utilities/advanced_constitutive_law_utilities.h"

namespace Kratos
{
Expand All @@ -27,7 +29,7 @@ namespace Kratos
///@{

// The size type definition
typedef std::size_t SizeType;
using SizeType = std::size_t;

///@}
///@name Enum's
Expand Down Expand Up @@ -56,10 +58,13 @@ class HighCycleFatigueLawIntegrator
///@name Type Definitions
///@{


/// Counted pointer of HighCycleFatigueLawIntegrator
KRATOS_CLASS_POINTER_DEFINITION(HighCycleFatigueLawIntegrator);

///@}
///@name Life Cycle
///@{

/// Initialization constructor
HighCycleFatigueLawIntegrator()
{
Expand Down

0 comments on commit bb82304

Please sign in to comment.