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; }; }