summaryrefslogtreecommitdiffstats
path: root/src/corelib/global/qglobal.cpp
diff options
context:
space:
mode:
authorSona Kurazyan <sona.kurazyan@qt.io>2022-07-27 15:57:58 +0200
committerSona Kurazyan <sona.kurazyan@qt.io>2022-07-29 23:04:21 +0200
commit8d6b274fa4c65e87443c0fbf8425229230385405 (patch)
tree62dfd224f569c7bcd552b8af75ed6f896db4338d /src/corelib/global/qglobal.cpp
parent908d048e4f4614c0d0bb2e7efdadd6d842496fb0 (diff)
Extract header qtversionchecks.h from qglobal.h
Task-number: QTBUG-99313 Change-Id: Iaaa6a055367e861d095b92e3e85e5bc340e6bbc1 Reviewed-by: Thiago Macieira <thiago.macieira@intel.com>
Diffstat (limited to 'src/corelib/global/qglobal.cpp')
-rw-r--r--src/corelib/global/qglobal.cpp44
1 files changed, 0 insertions, 44 deletions
diff --git a/src/corelib/global/qglobal.cpp b/src/corelib/global/qglobal.cpp
index 9811a6003a..f8db9e948e 100644
--- a/src/corelib/global/qglobal.cpp
+++ b/src/corelib/global/qglobal.cpp
@@ -1215,50 +1215,6 @@ static_assert(sizeof(qint64) == 8, "Internal error, qint64 is misdefined");
*/
/*!
- \macro QT_VERSION_CHECK(major, minor, patch)
- \relates <QtGlobal>
-
- Turns the \a major, \a minor and \a patch numbers of a version into an
- integer that encodes all three. When expressed in hexadecimal, this integer
- is of form \c 0xMMNNPP wherein \c{0xMM ==} \a major, \c{0xNN ==} \a minor,
- and \c{0xPP ==} \a patch. This can be compared with another similarly
- processed version ID.
-
- Example:
-
- \snippet code/src_corelib_global_qglobal.cpp qt-version-check
-
- \note the parameters are read as integers in the normal way, so should
- normally be written in decimal (so a \c 0x prefix must be used if writing
- them in hexadecimal). Thus \c{QT_VERSION_CHECK(5, 15, 0)} is equal to \c
- 0x050f00, which could equally be written \c{QT_VERSION_CHECK(5, 0xf, 0)}.
-
- \sa QT_VERSION
-*/
-
-/*!
- \macro QT_VERSION
- \relates <QtGlobal>
-
- This macro expands to a numeric value of the same form as \l
- QT_VERSION_CHECK() constructs, that specifies the version of Qt with which
- code using it is compiled. For example, if you compile your application with
- Qt 6.1.2, the QT_VERSION macro will expand to \c 0x060102, the same as
- \c{QT_VERSION_CHECK(6, 1, 2)}. Note that this need not agree with the
- version the application will find itself using at \e runtime.
-
- You can use QT_VERSION to select the latest Qt features where available
- while falling back to older implementations otherwise. Using
- QT_VERSION_CHECK() for the value to compare with is recommended.
-
- Example:
-
- \snippet code/src_corelib_global_qglobal.cpp 16
-
- \sa QT_VERSION_STR, QT_VERSION_CHECK(), qVersion()
-*/
-
-/*!
\macro QT_VERSION_STR
\relates <QtGlobal>