14 lines
167 B
C++
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;
|
|
}
|