Files
solver/OndselSolver/MBDynElement.h
2023-11-29 15:55:33 -06:00

21 lines
767 B
C++

/***************************************************************************
* Copyright (c) 2023 Ondsel, Inc. *
* *
* This file is part of OndselSolver. *
* *
* See LICENSE file for details about copyright. *
***************************************************************************/
#pragma once
#include "MBDynItem.h"
namespace MbD {
class MBDynElement : public MBDynItem
{
public:
void parseMBDyn(std::vector<std::string>& lines) override;
void initialize() override;
};
}