view libqterminal/QTerminal.h @ 15658:eaa7da75d202

Added QTerminalInteface class.
author Jacob Dawid <jacob.dawid@googlemail.com>
date Tue, 31 Jan 2012 11:14:38 +0100
parents 2d6724358c12
children 5758e0013246
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

#ifdef __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