X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fclient%2Fexecwrapper.h;h=015b8a618c40735ef4727e8a0c67973f46b2801f;hp=e6d6dce04b4b65bfa67a5b0ff52fad98d8f24c36;hb=1a45f16a9734820fba42fe1db3f38dd1eee49df6;hpb=ab16c77fe03b73a863d9b52b11919bcbac903f58 diff --git a/src/client/execwrapper.h b/src/client/execwrapper.h index e6d6dce0..015b8a61 100644 --- a/src/client/execwrapper.h +++ b/src/client/execwrapper.h @@ -1,22 +1,22 @@ /*************************************************************************** -* Copyright (C) 2005-09 by the Quassel Project * -* devel@quassel-irc.org * -* * -* This program is free software; you can redistribute it and/or modify * -* it under the terms of the GNU General Public License as published by * -* the Free Software Foundation; either version 2 of the License, or * -* (at your option) version 3. * -* * -* This program is distributed in the hope that it will be useful, * -* but WITHOUT ANY WARRANTY; without even the implied warranty of * -* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * -* GNU General Public License for more details. * -* * -* You should have received a copy of the GNU General Public License * -* along with this program; if not, write to the * -* Free Software Foundation, Inc., * -* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * -***************************************************************************/ + * Copyright (C) 2005-2018 by the Quassel Project * + * devel@quassel-irc.org * + * * + * This program is free software; you can redistribute it and/or modify * + * it under the terms of the GNU General Public License as published by * + * the Free Software Foundation; either version 2 of the License, or * + * (at your option) version 3. * + * * + * This program is distributed in the hope that it will be useful, * + * but WITHOUT ANY WARRANTY; without even the implied warranty of * + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * + * GNU General Public License for more details. * + * * + * You should have received a copy of the GNU General Public License * + * along with this program; if not, write to the * + * Free Software Foundation, Inc., * + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * + ***************************************************************************/ #ifndef EXECWRAPPER_H_ #define EXECWRAPPER_H_ @@ -25,34 +25,36 @@ #include "bufferinfo.h" -class ExecWrapper : public QObject { - Q_OBJECT +class ExecWrapper : public QObject +{ + Q_OBJECT public: - ExecWrapper(QObject *parent = 0); + ExecWrapper(QObject *parent = 0); public slots: - void start(const BufferInfo &info, const QString &command); + void start(const BufferInfo &info, const QString &command); signals: - void error(const QString &errorMsg); - void output(const QString &out); + void error(const QString &errorMsg); + void output(const QString &out); private slots: - void processReadStdout(); - void processReadStderr(); - void processFinished(int exitCode, QProcess::ExitStatus exitStatus); - void processError(QProcess::ProcessError); + void processReadStdout(); + void processReadStderr(); + void processFinished(int exitCode, QProcess::ExitStatus exitStatus); + void processError(QProcess::ProcessError); - void postStdout(const QString &); - void postStderr(const QString &); + void postStdout(const QString &); + void postStderr(const QString &); private: - QProcess _process; - BufferInfo _bufferInfo; - QString _scriptName; - QString _stdoutBuffer; - QString _stderrBuffer; + QProcess _process; + BufferInfo _bufferInfo; + QString _scriptName; + QString _stdoutBuffer; + QString _stderrBuffer; }; + #endif