You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
299 B
C++

#include "item.h"
Item::Item(const std::string &label) :
_label(label),
_is_received(false)
{}
const std::string& Item::label() const
{
return _label;
}
bool Item::isReceived() const
{
return _is_received;
}
void Item::setReceived(bool received)
{
_is_received = received;
}