ASMTPointInPlaneJoint::storeOnLevel

This commit is contained in:
Aik-Siong Koh
2023-12-01 00:53:36 -07:00
parent 2a3e026ee0
commit a2871455f4
2 changed files with 6 additions and 0 deletions

View File

@@ -23,3 +23,8 @@ void MbD::ASMTPointInPlaneJoint::storeOnTimeSeries(std::ofstream& os)
ASMTItemIJ::storeOnTimeSeries(os);
}
void MbD::ASMTPointInPlaneJoint::storeOnLevel(std::ofstream& os, int level)
{
ASMTInPlaneJoint::storeOnLevel(os, level);
}

View File

@@ -17,6 +17,7 @@ namespace MbD {
public:
std::shared_ptr<Joint> mbdClassNew() override;
void storeOnTimeSeries(std::ofstream& os) override;
void storeOnLevel(std::ofstream& os, int level) override;
};
}