added override to MBDynElement to make mac happy

This commit is contained in:
John Dupuy
2023-11-29 15:55:33 -06:00
parent e0241dd6d2
commit 97f7f6bf66
2 changed files with 5 additions and 0 deletions

View File

@@ -5,3 +5,7 @@ using namespace MbD;
void MbD::MBDynElement::initialize()
{
}
void MBDynElement::parseMBDyn(std::vector<std::string> &lines) {
MBDynItem::parseMBDyn(lines);
}

View File

@@ -13,6 +13,7 @@ namespace MbD {
class MBDynElement : public MBDynItem
{
public:
void parseMBDyn(std::vector<std::string>& lines) override;
void initialize() override;
};