comparison ui/processhelp_linux.cpp @ 603:cfef809b890d

Add Process Management functions and ther implementation for windows.
author Andre Heinecke <andre.heinecke@intevation.de>
date Tue, 17 Jun 2014 17:26:10 +0200
parents
children 20ca94680003
comparison
equal deleted inserted replaced
602:854248d81ba4 603:cfef809b890d
1 /* Copyright (C) 2014 by Bundesamt für Sicherheit in der Informationstechnik
2 * Software engineering by Intevation GmbH
3 *
4 * This file is Free Software under the GNU GPL (v>=2)
5 * and comes with ABSOLUTELY NO WARRANTY!
6 * See LICENSE.txt for details.
7 */
8 #ifndef WIN32
9
10 #include "processhelp.h"
11
12 const QList<int> ProcessHelp::getProcessesIdForName(const QString &processName) {
13 // TODO
14 Q_UNUSED(processName);
15 return QList<int>();
16 }
17
18 bool ProcessHelp::otherProcessesExist(const QString &processName) {
19 // TODO
20 Q_UNUSED(processName);
21 return false;
22 }
23
24 void ProcessHelp::activateWindowForProcess(const QString &executableName) {
25 // TODO
26 Q_UNUSED(executableName);
27 return;
28 }
29
30 #endif /* Not WIN32 */

http://wald.intevation.org/projects/trustbridge/