From 97f7f6bf666b262a8840f76028e7a7222398c408 Mon Sep 17 00:00:00 2001 From: John Dupuy Date: Wed, 29 Nov 2023 15:55:33 -0600 Subject: [PATCH] added override to MBDynElement to make mac happy --- OndselSolver/MBDynElement.cpp | 4 ++++ OndselSolver/MBDynElement.h | 1 + 2 files changed, 5 insertions(+) diff --git a/OndselSolver/MBDynElement.cpp b/OndselSolver/MBDynElement.cpp index b6f138c..efc3b2d 100644 --- a/OndselSolver/MBDynElement.cpp +++ b/OndselSolver/MBDynElement.cpp @@ -5,3 +5,7 @@ using namespace MbD; void MbD::MBDynElement::initialize() { } + +void MBDynElement::parseMBDyn(std::vector &lines) { + MBDynItem::parseMBDyn(lines); +} diff --git a/OndselSolver/MBDynElement.h b/OndselSolver/MBDynElement.h index eb7c550..9b24e22 100644 --- a/OndselSolver/MBDynElement.h +++ b/OndselSolver/MBDynElement.h @@ -13,6 +13,7 @@ namespace MbD { class MBDynElement : public MBDynItem { public: + void parseMBDyn(std::vector& lines) override; void initialize() override; };