HxNvr/HxVideoCaptor/external/HxUtils/include/HxProcess.h
2024-01-22 15:23:50 +08:00

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