478 QDebugStateSaver saver(debug);
479 const QMetaObject* obj = c.metaObject();
482 debug << endl <<
"------------------------------" << c.
printName() <<
"subclass of QAlgorithm" << endl;
485 debug <<
"Algorithm with input:" << endl;
486 for(
int k = 0; k < obj->propertyCount(); k++)
488 QMetaProperty prop = obj->property(k);
490 QString propName = prop.name();
491 if(propName.startsWith(
QA_IN))
493 propName.remove(
QA_IN);
494 debug << propName.rightJustified(30,
' ',
true) <<
"\t" << prop.read(&c) << endl;
499 debug <<
"Algorithm with parameters:" << endl;
500 for(
int k = 0; k < obj->propertyCount(); k++)
502 QMetaProperty prop = obj->property(k);
504 QString propName = prop.name();
505 if(propName.startsWith(
QA_PAR))
508 debug << propName.rightJustified(30,
' ',
true) <<
"\t" << prop.read(&c) << endl;
513 debug <<
"Algorithm with output:" << endl;
514 for(
int k = 0; k < obj->propertyCount(); k++)
516 QMetaProperty prop = obj->property(k);
518 QString propName = prop.name();
519 if(propName.startsWith(
QA_OUT))
521 propName = propName.remove(
QA_OUT);
522 debug << propName.rightJustified(30,
' ',
true) <<
"\t" << prop.read(&c) << endl;
526 debug <<
"------------------------------" << endl;
#define QA_OUT
Prefix for output properties.
#define QA_PAR
Prefix for parameters.
#define QA_IN
Prefix for input properties.
QString printName() const
Returns name, memory address and class name of the algorithm.