/*************************************************************************** * Copyright (c) 2023 Ondsel, Inc. * * * * This file is part of OndselSolver. * * * * See LICENSE file for details about copyright. * ***************************************************************************/ #pragma once #include "ASMTMotion.h" namespace MbD { class EXPORT ASMTGeneralMotion : public ASMTMotion { // public: void parseASMT(std::vector& lines) override; void readrIJI(std::vector& lines); void readangIJJ(std::vector& lines); void readRotationOrder(std::vector& lines); std::shared_ptr mbdClassNew() override; void createMbD(std::shared_ptr mbdSys, std::shared_ptr mbdUnits) override; void storeOnLevel(std::ofstream& os, int level) override; void storeOnTimeSeries(std::ofstream& os) override; std::shared_ptr> rIJI, angIJJ; std::string rotationOrder; }; }