view libgui/qterminal/libqterminal/QTerminal.h @ 15681:018c46ef8a0c

maint: move everything under libgui/qterminal
author Jordi Gutiérrez Hermoso <jordigh@octave.org>
date Mon, 26 Nov 2012 12:07:51 -0500
parents libqterminal/QTerminal.h@5758e0013246
children 9cd14e53e906
line wrap: on
line source

/*

Copyright (C) 2012 Michael Goffioul.
Copyright (C) 2012 Jacob Dawid.

This file is part of QTerminal.

Foobar 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.

QTerminal 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 Foobar.  If not, see <http://www.gnu.org/licenses/>.

*/

#ifndef QTERMINAL_H
#define QTERMINAL_H

#include <QtGlobal>

#ifdef Q_OS_WIN32
    #include "win32/QWinTerminalImpl.h"
    class QTerminal : public QWinTerminalImpl
    {
        Q_OBJECT
    public:
        QTerminal(QWidget *parent = 0)
            : QWinTerminalImpl(parent) { }
        ~QTerminal() { }
    };
#else
    #include "unix/QUnixTerminalImpl.h"
    class QTerminal : public QUnixTerminalImpl
    {
        Q_OBJECT
    public:
        QTerminal(QWidget *parent = 0)
            : QUnixTerminalImpl(parent) { }
        ~QTerminal() { }
    };
#endif

#endif // QTERMINAL_H