hi
i tried using Qprocess below is the code
QString program
= "/project/tspgfeip/usr/DCU/gurinder/dcu_regression/gurinder_verif_dcu_tb_vr.11.00.00.12/dcu/tool_data/scripts/run_single";
arguments << "TestSet0";
myProcess->start( program,arguments);
}
QObject *parent;
QString program = "/project/tspgfeip/usr/DCU/gurinder/dcu_regression/gurinder_verif_dcu_tb_vr.11.00.00.12/dcu/tool_data/scripts/run_single";
QStringList arguments;
arguments << "TestSet0";
QProcess *myProcess = new QProcess(parent);
myProcess->start( program,arguments);
}
To copy to clipboard, switch view to plain text mode
it gives following error
form1.ui.h:1062: no matching function for call to `QProcess::start(QStringList&
)'
/usr/lib64/qt-3.1/include/qprocess.h:77: candidates are: virtual bool
QProcess::start(QStringList* = 0)
make: *** [.obj/form1.o] Error 1
Bookmarks