summaryrefslogtreecommitdiffstats
path: root/src/corelib/kernel/qobject.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/corelib/kernel/qobject.cpp')
-rw-r--r--src/corelib/kernel/qobject.cpp16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/corelib/kernel/qobject.cpp b/src/corelib/kernel/qobject.cpp
index efa71470d4..b0e2ebca92 100644
--- a/src/corelib/kernel/qobject.cpp
+++ b/src/corelib/kernel/qobject.cpp
@@ -4497,6 +4497,14 @@ QDebug operator<<(QDebug dbg, const QObject *o)
\c{staticMetaObject} is of type QMetaObject and provides access to the
enums declared with Q_ENUM_NS/Q_FLAG_NS.
+ For example:
+
+ \code
+ namespace test {
+ Q_NAMESPACE
+ ...
+ \endcode
+
\sa Q_NAMESPACE_EXPORT
*/
@@ -4513,6 +4521,14 @@ QDebug operator<<(QDebug dbg, const QObject *o)
is declared with the supplied \a EXPORT_MACRO qualifier. This is
useful if the object needs to be exported from a dynamic library.
+ For example:
+
+ \code
+ namespace test {
+ Q_NAMESPACE_EXPORT(EXPORT_MACRO)
+ ...
+ \endcode
+
\sa Q_NAMESPACE, {Creating Shared Libraries}
*/