summaryrefslogtreecommitdiffstats
path: root/src/core/jobs
diff options
context:
space:
mode:
authorTomi Korpipää <tomi.korpipaa@theqtcompany.com>2016-04-20 14:25:09 +0300
committerTomi Korpipää <tomi.korpipaa@theqtcompany.com>2016-04-21 09:33:12 +0000
commit5e93098f1d1095f004ddf0e836d05f6f253deb14 (patch)
tree80262a449429d56d8e7a5d3e0aea01832ef5db83 /src/core/jobs
parent719e0c203d5e502e1ba2cf54da9ac3ee78f9d6f2 (diff)
Added the rest of Qt3DCore doc skeletons
Change-Id: I6898bdc24821276d44fdf5f42170143b7a0cbfd9 Reviewed-by: Miikka Heikkinen <miikka.heikkinen@theqtcompany.com> Reviewed-by: Pasi Keränen <pasi.keranen@theqtcompany.com> Reviewed-by: Antti Määttä <antti.maatta@theqtcompany.com> Reviewed-by: Sean Harmer <sean.harmer@kdab.com>
Diffstat (limited to 'src/core/jobs')
-rw-r--r--src/core/jobs/qaspectjob.cpp25
1 files changed, 24 insertions, 1 deletions
diff --git a/src/core/jobs/qaspectjob.cpp b/src/core/jobs/qaspectjob.cpp
index 306950b51..539ae78bf 100644
--- a/src/core/jobs/qaspectjob.cpp
+++ b/src/core/jobs/qaspectjob.cpp
@@ -68,7 +68,21 @@ QAspectJob::QAspectJob()
{
}
-/*! \internal */
+/*!
+ * \class Qt3DCore::QAspectJob
+ * \inmodule Qt3DCore
+ *
+ * TODO
+ */
+
+/*!
+ * \fn void QAspectJob::run()
+ * Executes job.
+ */
+
+/*!
+ * \internal
+ */
QAspectJob::QAspectJob(QAspectJobPrivate &dd)
: d_ptr(&dd)
{
@@ -79,6 +93,9 @@ QAspectJob::~QAspectJob()
delete d_ptr;
}
+/*!
+ * Adds \a dependency to the aspect job.
+ */
void QAspectJob::addDependency(QWeakPointer<QAspectJob> dependency)
{
Q_D(QAspectJob);
@@ -90,6 +107,9 @@ void QAspectJob::addDependency(QWeakPointer<QAspectJob> dependency)
#endif
}
+/*!
+ * Removes the given \a dependency from aspect job.
+ */
void QAspectJob::removeDependency(QWeakPointer<QAspectJob> dependency)
{
Q_D(QAspectJob);
@@ -103,6 +123,9 @@ void QAspectJob::removeDependency(QWeakPointer<QAspectJob> dependency)
}
}
+/*!
+ * \return the dependencies of the aspect job.
+ */
QVector<QWeakPointer<QAspectJob> > QAspectJob::dependencies() const
{
Q_D(const QAspectJob);