andre@603: /* Copyright (C) 2014 by Bundesamt für Sicherheit in der Informationstechnik andre@603: * Software engineering by Intevation GmbH andre@603: * andre@603: * This file is Free Software under the GNU GPL (v>=2) andre@603: * and comes with ABSOLUTELY NO WARRANTY! andre@603: * See LICENSE.txt for details. andre@603: */ andre@603: #ifndef WIN32 andre@603: andre@603: #include "processhelp.h" andre@603: andre@603: const QList ProcessHelp::getProcessesIdForName(const QString &processName) { andre@603: // TODO andre@603: Q_UNUSED(processName); andre@603: return QList(); andre@603: } andre@603: andre@603: bool ProcessHelp::otherProcessesExist(const QString &processName) { andre@603: // TODO andre@603: Q_UNUSED(processName); andre@603: return false; andre@603: } andre@603: andre@603: void ProcessHelp::activateWindowForProcess(const QString &executableName) { andre@603: // TODO andre@603: Q_UNUSED(executableName); andre@603: return; andre@603: } andre@603: andre@603: #endif /* Not WIN32 */