[64efc22] | 1 | /* Copyright (C) 2020 Axel Kittenberger (axel.kittenberger@univie.ac.at) |
---|
[45157b3] | 2 | |
---|
| 3 | This library is free software; you can redistribute it and/or |
---|
| 4 | modify it under the terms of the GNU Library General Public |
---|
| 5 | License as published by the Free Software Foundation; either |
---|
| 6 | version 2 of the License, or (at your option) any later version. |
---|
| 7 | |
---|
| 8 | This library is distributed in the hope that it will be useful, |
---|
| 9 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
| 10 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
---|
| 11 | Library General Public License for more details. |
---|
| 12 | |
---|
| 13 | You should have received a copy of the GNU Library General Public License |
---|
| 14 | along with this library; see the file COPYING.LIB. If not, write to |
---|
| 15 | the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
---|
| 16 | Boston, MA 02110-1301, USA. |
---|
| 17 | */ |
---|
| 18 | |
---|
| 19 | |
---|
[64efc22] | 20 | #ifndef _Q_TERM_WIDGET_VERSION |
---|
| 21 | #define _Q_TERM_WIDGET_VERSION |
---|
[45157b3] | 22 | |
---|
[64efc22] | 23 | #include <QtGlobal> |
---|
| 24 | #define QTERMWIDGET_VERSION_MAJOR 1 |
---|
| 25 | #define QTERMWIDGET_VERSION_MINOR 2 |
---|
| 26 | #define QTERMWIDGET_VERSION_PATCH 0 |
---|
| 27 | #define QTERMWIDGET_VERSION QT_VERSION_CHECK(\ |
---|
| 28 | QTERMWIDGET_VERSION_MAJOR,\ |
---|
| 29 | QTERMWIDGET_VERSION_MINOR,\ |
---|
| 30 | QTERMWIDGET_VERSION_PATCH) |
---|
[45157b3] | 31 | |
---|
| 32 | #endif |
---|
[64efc22] | 33 | |
---|