17 lines
232 B
C
17 lines
232 B
C
#pragma once
|
|
#include <string>
|
|
|
|
namespace MbD {
|
|
class Item
|
|
{
|
|
public:
|
|
Item() {}
|
|
Item(std::string str) : name(str) {}
|
|
void setName(std::string& str);
|
|
const std::string& getName() const;
|
|
private:
|
|
std::string name;
|
|
};
|
|
}
|
|
|