summaryrefslogtreecommitdiffstats
path: root/src/b2qt-flashing-wizard/platforminfo.h
diff options
context:
space:
mode:
authorRainer Keller <rainer.keller@theqtcompany.com>2014-12-10 15:04:40 +0100
committerRainer Keller <rainer.keller@theqtcompany.com>2014-12-15 10:19:09 +0200
commit364753fb3e8bb95faa4cdbef07de8c0f6868d913 (patch)
tree073e6dd66cea96d3ff05060102d7d92d5874d486 /src/b2qt-flashing-wizard/platforminfo.h
parent93e20f9fc2acb05814366344d774ebdadaead06b (diff)
b2qt-flashing-wizard: Use config files for deploment
Change-Id: If79eec5eb395c60e6f7531bbd9a3d422221c0f19 Reviewed-by: Rainer Keller <rainer.keller@theqtcompany.com>
Diffstat (limited to 'src/b2qt-flashing-wizard/platforminfo.h')
-rw-r--r--src/b2qt-flashing-wizard/platforminfo.h39
1 files changed, 39 insertions, 0 deletions
diff --git a/src/b2qt-flashing-wizard/platforminfo.h b/src/b2qt-flashing-wizard/platforminfo.h
new file mode 100644
index 0000000..5108aec
--- /dev/null
+++ b/src/b2qt-flashing-wizard/platforminfo.h
@@ -0,0 +1,39 @@
+/****************************************************************************
+**
+** Copyright (C) 2014 Digia Plc
+** All rights reserved.
+** For any questions to Digia, please use the contact form at
+** http://qt.digia.com/
+**
+** This file is part of Qt Enterprise Embedded.
+**
+** Licensees holding valid Qt Enterprise licenses may use this file in
+** accordance with the Qt Enterprise License Agreement provided with the
+** Software or, alternatively, in accordance with the terms contained in
+** a written agreement between you and Digia.
+**
+** If you have questions regarding the use of this file, please use
+** the contact form at http://qt.digia.com/
+**
+****************************************************************************/
+
+#ifndef PLATFORMINFO_H
+#define PLATFORMINFO_H
+
+#include <QStringList>
+
+class PlatformInfo {
+public:
+ PlatformInfo() : asroot(false) { }
+ QString name; // Display name
+ QString platform; // generic-4.4 / iMX6
+ QString os; // eAndroid / eLinux
+ QString board; // nexus7v2,nexus7, etc...
+ QString deployCommand; // script
+ QStringList deployArguments;
+ QString androidversion;
+ QString version; // Boot2Qt version
+ bool asroot; // script needs root privileges
+};
+
+#endif // PLATFORMINFO_H