#pragma once #include "Function.h" #include "Symbolic.h" #include "System.h" #include "Units.h" namespace MbD { class FunctionWithManyArgs : public Function { //terms public: FunctionWithManyArgs(); FunctionWithManyArgs(Symsptr term); FunctionWithManyArgs(Symsptr term, Symsptr term1); FunctionWithManyArgs(Symsptr term, Symsptr term1, Symsptr term2); FunctionWithManyArgs(std::shared_ptr> _terms); std::shared_ptr> getTerms() override; void createMbD(std::shared_ptr mbdSys, std::shared_ptr mbdUnits) override; std::shared_ptr> terms; }; }