{
list
myList->addItems
(
myBed = new bed(this->room()),
new pillows (this->room()->myBed()),
new wallPics (this->room()->wall()),
new coolers (this->Laptop()),
new stickers (this->Laptop()),
new books (this, bookName::dataBase, bookName::AI, bookName::programmingParadigms),
new chair (myRoom, chair::looks | chair::comfort),
new beanBag (this->room()),
new amplifier (this->guitar()),
new fruitsContract (this->friends(ArunKJ))
);
m_cashRequired = getCost(myList->getCost());
this->dad()->borrowCash(m_cashRequired);
return list;
}