21 lines
742 B
C++
21 lines
742 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 MBDynData : public MBDynBlock
|
|
{
|
|
public:
|
|
void initialize() override;
|
|
void parseMBDyn(std::vector<std::string>& lines) override;
|
|
|
|
};
|
|
}
|