14 lines
161 B
C++
14 lines
161 B
C++
#ifndef UTILITY_APP_H
|
|
#define UTILITY_APP_H
|
|
|
|
#include <QProcess>
|
|
|
|
namespace utility
|
|
{
|
|
std::string executeProcess(const char* cmd);
|
|
}
|
|
|
|
|
|
#endif // UTILITY_APP_H
|
|
|