Files
solver/OndselSolver/MBDynElements.h
2023-10-05 09:03:21 -06:00

24 lines
840 B
C++

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