Files
solver/OndselSolver/DispCompIecJecO.h
Chris Mayo 07785b7576 include cstdint for SIZE_MAX (#86)
GCC 15 is removing cstdint from the C++ Standard Library.
2024-11-27 15:07:28 -07:00

31 lines
912 B
C++

/***************************************************************************
* Copyright (c) 2023 Ondsel, Inc. *
* *
* This file is part of OndselSolver. *
* *
* See LICENSE file for details about copyright. *
***************************************************************************/
#pragma once
#include <cstdint>
#include "KinematicIeJe.h"
namespace MbD {
class DispCompIecJecO : public KinematicIeJe
{
//axis riIeJeO
public:
DispCompIecJecO();
DispCompIecJecO(EndFrmsptr frmi, EndFrmsptr frmj, size_t axis);
void calcPostDynCorrectorIteration() override;
double value() override;
size_t axis = SIZE_MAX;
double riIeJeO;
};
}