#include #include #include namespace icl{ void FloatHandle::operator=(float f){ (**this)->setText(QString::number(f)); } float FloatHandle::getValue() const{ return (float)atof((**this)->text().toLatin1().data()); } }