32 lines
1.1 KiB
C++
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 "ASMTPointInLineJoint.h"
|
|
#include "PointInLineJoint.h"
|
|
|
|
using namespace MbD;
|
|
|
|
std::shared_ptr<ASMTPointInLineJoint> MbD::ASMTPointInLineJoint::With()
|
|
{
|
|
auto asmt = std::make_shared<ASMTPointInLineJoint>();
|
|
asmt->initialize();
|
|
return asmt;
|
|
}
|
|
|
|
std::shared_ptr<ItemIJ> MbD::ASMTPointInLineJoint::mbdClassNew()
|
|
{
|
|
return CREATE<PointInLineJoint>::With();
|
|
}
|
|
|
|
void MbD::ASMTPointInLineJoint::storeOnTimeSeries(std::ofstream& os)
|
|
{
|
|
os << "PointInLineJointSeries\t" << fullName("") << std::endl;
|
|
ASMTItemIJ::storeOnTimeSeries(os);
|
|
}
|