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