26 lines
832 B
C++
26 lines
832 B
C++
/***************************************************************************
|
|
* Copyright (c) 2023 Ondsel, Inc. *
|
|
* *
|
|
* This file is part of OndselSolver. *
|
|
* *
|
|
* See LICENSE file for details about copyright. *
|
|
***************************************************************************/
|
|
|
|
#pragma once
|
|
|
|
#include "ExpressionX.h"
|
|
#include "System.h"
|
|
#include "Units.h"
|
|
|
|
namespace MbD {
|
|
class ASMTTime : public ExpressionX
|
|
{
|
|
//
|
|
public:
|
|
void deleteMbD();
|
|
void createMbD(std::shared_ptr<System> mbdSys, std::shared_ptr<Units> mbdUnits);
|
|
|
|
};
|
|
}
|
|
|