HxUtils/HxProcess.h
2024-01-11 16:14:21 +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