Files
solver/MbDCode/Item.cpp
2023-05-09 12:50:36 -06:00

35 lines
351 B
C++

#include "Item.h"
using namespace MbD;
Item::Item() {
initialize();
}
Item::Item(const char* str) : name(str)
{
initialize();
}
void Item::initialize()
{
}
void Item::setName(std::string& str)
{
name = str;
}
const std::string& Item::getName() const
{
return name;
}
void Item::initializeLocally()
{
}
void Item::initializeGlobally()
{
}