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