You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
457 B
C++
17 lines
457 B
C++
#pragma once
|
|
|
|
#include <QString>
|
|
#include <QStringList>
|
|
|
|
class ApplicationLauncher
|
|
{
|
|
public:
|
|
// appId is only a hint for the runtime: it is the key an instance is
|
|
// tracked and can later be quit under.
|
|
static bool startDetached(const QStringList &command,
|
|
const QString &workingDirectory = QString(),
|
|
const QString &appId = QString());
|
|
|
|
static bool quit(const QString &appId);
|
|
};
|