Files
solver/OndselSolver/ASMTFixedJoint.cpp
2023-10-19 10:51:51 -06:00

32 lines
1.1 KiB
C++

/***************************************************************************
* Copyright (c) 2023 Ondsel, Inc. *
* *
* This file is part of OndselSolver. *
* *
* See LICENSE file for details about copyright. *
***************************************************************************/
#include <fstream>
#include "ASMTFixedJoint.h"
using namespace MbD;
std::shared_ptr<Joint> MbD::ASMTFixedJoint::mbdClassNew()
{
return CREATE<FixedJoint>::With();
}
void MbD::ASMTFixedJoint::storeOnLevel(std::ofstream& os, int level)
{
storeOnLevelString(os, level, "FixedJoint");
storeOnLevelString(os, level + 1, "Name");
storeOnLevelString(os, level + 2, name);
ASMTItemIJ::storeOnLevel(os, level);
}
void MbD::ASMTFixedJoint::storeOnTimeSeries(std::ofstream& os)
{
os << "FixedJointSeries\t" << fullName("") << std::endl;
ASMTItemIJ::storeOnTimeSeries(os);
}