Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[CLApplication] Missing includes #11500

Merged
merged 1 commit into from
Aug 24, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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