view libgui/qterminal/libqterminal/unix/SelfListener.h @ 18640:a25bbe8c954c

Update Jacob Dawid's email address
author Jordi Gutiérrez Hermoso <jordigh@octave.org>
date Tue, 08 Apr 2014 16:29:29 -0400
parents d63878346099
children
line wrap: on
line source

/* qterminal - a terminal widget for Qt
 * Copyright (C) 2011, 2013 Jacob Dawid (jacob.dawid@cybercatalyst.com)
 *
 * 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 3 of the
 * License, or (at your option) any later version.
 *
 * 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, see <http://www.gnu.org/licenses/>.
 */

#ifndef SELFLISTENER_H
#define SELFLISTENER_H

#include <QThread>
#include <unistd.h>

class SelfListener : public QThread
{
    Q_OBJECT
public:
    explicit SelfListener(int a, QObject *parent = 0);

signals:
    void recvData(const char* stdOutBuffer, int stdOutlen);

public slots:

protected:
    void run();
    int _a;
};

#endif // SELFLISTENER_H