aboutsummaryrefslogtreecommitdiffstats
path: root/src/core/qqmlcoreglobal_p.h
diff options
context:
space:
mode:
authorMitch Curtis <mitch.curtis@qt.io>2021-04-16 11:09:29 +0200
committerMitch Curtis <mitch.curtis@qt.io>2021-04-21 14:37:10 +0200
commit93bd34b78fb33fbf8f2a2c3f97a512ba41de2575 (patch)
tree855451dbd757c28ffdf4663f47b4f45e11b2d8f9 /src/core/qqmlcoreglobal_p.h
parentab3cecbd2a9c9d8178bebc32955e8e94d30037d8 (diff)
Add QtCore module
[ChangeLog][QtQmlCore] Added QtCore QML module. Currently this only contains the StandardPaths singleton, but in the future could expose lots of useful types from Qt Core to QML. Fixes: QTBUG-92806 Change-Id: Ib99e2c5512ee04d6af1322f985fc9da965cf13a4 Reviewed-by: Ulf Hermann <ulf.hermann@qt.io>
Diffstat (limited to 'src/core/qqmlcoreglobal_p.h')
-rw-r--r--src/core/qqmlcoreglobal_p.h74
1 files changed, 74 insertions, 0 deletions
diff --git a/src/core/qqmlcoreglobal_p.h b/src/core/qqmlcoreglobal_p.h
new file mode 100644
index 0000000000..85dc15b095
--- /dev/null
+++ b/src/core/qqmlcoreglobal_p.h
@@ -0,0 +1,74 @@
+/****************************************************************************
+**
+** Copyright (C) 2021 The Qt Company Ltd.
+** Contact: https://www.qt.io/licensing/
+**
+** This file is part of the QtQuick module of the Qt Toolkit.
+**
+** $QT_BEGIN_LICENSE:LGPL$
+** Commercial License Usage
+** Licensees holding valid commercial Qt licenses may use this file in
+** accordance with the commercial license agreement provided with the
+** Software or, alternatively, in accordance with the terms contained in
+** a written agreement between you and The Qt Company. For licensing terms
+** and conditions see https://www.qt.io/terms-conditions. For further
+** information use the contact form at https://www.qt.io/contact-us.
+**
+** GNU Lesser General Public License Usage
+** Alternatively, this file may be used under the terms of the GNU Lesser
+** General Public License version 3 as published by the Free Software
+** Foundation and appearing in the file LICENSE.LGPL3 included in the
+** packaging of this file. Please review the following information to
+** ensure the GNU Lesser General Public License version 3 requirements
+** will be met: https://www.gnu.org/licenses/lgpl-3.0.html.
+**
+** GNU General Public License Usage
+** Alternatively, this file may be used under the terms of the GNU
+** General Public License version 2.0 or (at your option) the GNU General
+** Public license version 3 or any later version approved by the KDE Free
+** Qt Foundation. The licenses are as published by the Free Software
+** Foundation and appearing in the file LICENSE.GPL2 and LICENSE.GPL3
+** included in the packaging of this file. Please review the following
+** information to ensure the GNU General Public License requirements will
+** be met: https://www.gnu.org/licenses/gpl-2.0.html and
+** https://www.gnu.org/licenses/gpl-3.0.html.
+**
+** $QT_END_LICENSE$
+**
+****************************************************************************/
+
+#ifndef QQMLCOREGLOBAL_P_H
+#define QQMLCOREGLOBAL_P_H
+
+//
+// W A R N I N G
+// -------------
+//
+// This file is not part of the Qt API. It exists purely as an
+// implementation detail. This header file may change from version to
+// version without notice, or even be removed.
+//
+// We mean it.
+//
+
+#include <QtCore/qglobal.h>
+
+QT_BEGIN_NAMESPACE
+
+#if !defined(QT_STATIC)
+# if defined(QT_BUILD_QML_CORE_LIB)
+# define Q_QMLCORE_EXPORT Q_DECL_EXPORT
+# else
+# define Q_QMLCORE_EXPORT Q_DECL_IMPORT
+# endif
+#else
+# define Q_QMLCORE_EXPORT
+#endif
+
+#define Q_QMLCORE_PRIVATE_EXPORT Q_QMLCORE_EXPORT
+
+QT_END_NAMESPACE
+
+void Q_QMLCORE_PRIVATE_EXPORT qml_register_types_QtCore();
+
+#endif // QQMLCOREGLOBAL_P_H