HxVideoCaptor/external/HxUtils/include/HxProcess.h

20 lines
272 B
C++

#ifndef HXPROCESS_H
#define HXPROCESS_H
#include <QProcess>
#include <HxTrace.h>
class HxProcess
{
public:
/**
* @brief 同步启动进程
* @param command 参数
* @return
*/
static QString start(QString command);
};
#endif // HXPROCESS_H