51 #define PROTOTYPEIDLIST_C
53 #include "prototypeIdList.hh"
55 prototypeIdList::prototypeIdList(QObject *parent ) :
61 QString prototypeIdList::toString()
const {
63 int size = thisObject().property(
"size").toNumber();
70 result =
"" + thisObject().property(
"0").toString();
72 for (
int i = 1; i < size; i++)
73 result +=
"," + thisObject().property( QString::number(i) ).toString();