blob: 5bd5d44a9d23ef3a75e89b343a39e73c9db96ba1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
//===========================================
// Lumina-DE source code
// Copyright (c) 2016, Ken Moore
// Available under the 3-clause BSD license
// See the LICENSE file for full details
//===========================================
#include <QObject>
#include <QProcess>
class LSession : public QObject{
Q_OBJECT
private:
QList<QProcess*> PROCS;
bool stopping;
private slots:
void stopall();
void procFinished();
void startProcess(QString ID, QString command);
public:
LSession(){
stopping = false;
}
~LSession(){ }
void start();
};
|