// // C++ Interface: execute_process // // Description: // // // Author: Joachim Schiele , (C) 2009 // // Copyright: See COPYING file that comes with this distribution // // #ifndef EXECUTE_PROCESS_H #define EXECUTE_PROCESS_H #include /** @author Joachim Schiele */ class execute_process { public: execute_process(); ~execute_process(); void execute(QString program); private: QProcess *myProcess; }; #endif