Files
solver/MbDCode/Variable.cpp
2023-05-05 19:01:53 -06:00

14 lines
167 B
C++

#include "Variable.h"
using namespace MbD;
void Variable::setName(std::string& str)
{
name = str;
}
const std::string& Variable::getName() const
{
return name;
}