Files
solver/OndselSolver/Arguments.h
2023-12-12 15:27:26 -07:00

20 lines
712 B
C++

/***************************************************************************
* Copyright (c) 2023 Ondsel, Inc. *
* *
* This file is part of OndselSolver. *
* *
* See LICENSE file for details about copyright. *
***************************************************************************/
#pragma once
#include "FunctionWithManyArgs.h"
namespace MbD {
class Arguments : public FunctionWithManyArgs
{
public:
void arguments(Symsptr args) override;
};
}