links_ = new QList<QGraphicsLineItem*>(*links);
, * QList, , . , , , ,
links_ = new QList<QGraphicsLineItem*>(links);
, .
, QList , . , . , , .
, , const'ness, , const . , "const_cast", const'ness . const const , , , . . ?
void bar(const Foo& f) {
f.setX(5);
Foo &f2 = const_cast<Foo&>(f);
f2.setX(5);
}
, , .
source
share