From a2871455f418fb75ddff1d95db75ad2c69ce5173 Mon Sep 17 00:00:00 2001 From: Aik-Siong Koh Date: Fri, 1 Dec 2023 00:53:36 -0700 Subject: [PATCH] ASMTPointInPlaneJoint::storeOnLevel --- OndselSolver/ASMTPointInPlaneJoint.cpp | 5 +++++ OndselSolver/ASMTPointInPlaneJoint.h | 1 + 2 files changed, 6 insertions(+) diff --git a/OndselSolver/ASMTPointInPlaneJoint.cpp b/OndselSolver/ASMTPointInPlaneJoint.cpp index 733055a..3a195fc 100644 --- a/OndselSolver/ASMTPointInPlaneJoint.cpp +++ b/OndselSolver/ASMTPointInPlaneJoint.cpp @@ -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); +} + diff --git a/OndselSolver/ASMTPointInPlaneJoint.h b/OndselSolver/ASMTPointInPlaneJoint.h index df1e903..ad31541 100644 --- a/OndselSolver/ASMTPointInPlaneJoint.h +++ b/OndselSolver/ASMTPointInPlaneJoint.h @@ -17,6 +17,7 @@ namespace MbD { public: std::shared_ptr mbdClassNew() override; void storeOnTimeSeries(std::ofstream& os) override; + void storeOnLevel(std::ofstream& os, int level) override; }; }