summaryrefslogtreecommitdiff
path: root/src/plugins/remotelinux/embeddedlinuxqtversion.h
diff options
context:
space:
mode:
authorTobias Hunger <tobias.hunger@nokia.com>2011-10-28 15:52:55 +0000
committerDaniel Teske <daniel.teske@nokia.com>2011-11-03 17:43:27 +0100
commitc20aadc082c5ed9b6ff9cca5a18764aff8eee8ec (patch)
treed68423dfc6349f52bc15361f44e153ffb3f315b9 /src/plugins/remotelinux/embeddedlinuxqtversion.h
parente541bd822211564c0e35b93e075bc4afe1bf920a (diff)
downloadqt-creator-c20aadc082c5ed9b6ff9cca5a18764aff8eee8ec.tar.gz
Embedded Linux Qt version
Add embedded linux Qt version Change-Id: I883692e30dd68b861478ba446ad0afafc473a594 Reviewed-by: Daniel Teske <daniel.teske@nokia.com>
Diffstat (limited to 'src/plugins/remotelinux/embeddedlinuxqtversion.h')
-rw-r--r--src/plugins/remotelinux/embeddedlinuxqtversion.h64
1 files changed, 64 insertions, 0 deletions
diff --git a/src/plugins/remotelinux/embeddedlinuxqtversion.h b/src/plugins/remotelinux/embeddedlinuxqtversion.h
new file mode 100644
index 0000000000..1c883c0ddb
--- /dev/null
+++ b/src/plugins/remotelinux/embeddedlinuxqtversion.h
@@ -0,0 +1,64 @@
+/**************************************************************************
+**
+** This file is part of Qt Creator
+**
+** Copyright (c) 2011 Nokia Corporation and/or its subsidiary(-ies).
+**
+** Contact: Nokia Corporation (info@qt.nokia.com)
+**
+**
+** GNU Lesser General Public License Usage
+**
+** This file may be used under the terms of the GNU Lesser General Public
+** License version 2.1 as published by the Free Software Foundation and
+** appearing in the file LICENSE.LGPL included in the packaging of this file.
+** Please review the following information to ensure the GNU Lesser General
+** Public License version 2.1 requirements will be met:
+** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
+**
+** In addition, as a special exception, Nokia gives you certain additional
+** rights. These rights are described in the Nokia Qt LGPL Exception
+** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
+**
+** Other Usage
+**
+** Alternatively, this file may be used in accordance with the terms and
+** conditions contained in a signed written agreement between you and Nokia.
+**
+** If you have questions regarding the use of this file, please contact
+** Nokia at info@qt.nokia.com.
+**
+**************************************************************************/
+
+#ifndef EMBEDDEDLINUXQTVERSION_H
+#define EMBEDDEDLINUXQTVERSION_H
+
+#include <qtsupport/baseqtversion.h>
+
+namespace RemoteLinux {
+namespace Internal {
+
+class EmbeddedLinuxQtVersion : public QtSupport::BaseQtVersion
+{
+public:
+ EmbeddedLinuxQtVersion();
+ EmbeddedLinuxQtVersion(const QString &path, bool isAutodetected = false, const QString &autodetectionSource = QString());
+ ~EmbeddedLinuxQtVersion();
+ EmbeddedLinuxQtVersion *clone() const;
+
+ QString type() const;
+
+ QString warningReason() const;
+
+ QList<ProjectExplorer::Abi> detectQtAbis() const;
+
+ bool supportsTargetId(const QString &id) const;
+ QSet<QString> supportedTargetIds() const;
+
+ QString description() const;
+};
+
+} // namespace Internal
+} // namespace RemoteLinux
+
+#endif // EMBEDDEDLINUXQTVERSION_H