summaryrefslogtreecommitdiffstats
path: root/src/core/jobs/weaverjob_p.h
diff options
context:
space:
mode:
authorPaul Lemire <paul.lemire@epitech.eu>2014-02-10 22:00:54 +0100
committerSean Harmer <sean.harmer@kdab.com>2014-02-26 12:47:42 +0100
commit4f489c2b564c9284f4cdf27f96f17084fc9bab1b (patch)
tree453706c8af7dc1a9b28a8f2aff64a4b922a2a26a /src/core/jobs/weaverjob_p.h
parent2a9a67d1b1798128a40d65c9cb18399e28d46fcd (diff)
Separated sources in subfolders so as to have a clearer view of the code
Change-Id: I1f3d030310bd93e0919c94c75cea79461d05e0f2 Reviewed-by: Pasi Keränen <pasi.keranen@digia.com> Reviewed-by: Sean Harmer <sean.harmer@kdab.com>
Diffstat (limited to 'src/core/jobs/weaverjob_p.h')
-rw-r--r--src/core/jobs/weaverjob_p.h62
1 files changed, 62 insertions, 0 deletions
diff --git a/src/core/jobs/weaverjob_p.h b/src/core/jobs/weaverjob_p.h
new file mode 100644
index 000000000..5f93ac3cc
--- /dev/null
+++ b/src/core/jobs/weaverjob_p.h
@@ -0,0 +1,62 @@
+/****************************************************************************
+**
+** Copyright (C) 2014 Klaralvdalens Datakonsult AB (KDAB).
+** Contact: http://www.qt-project.org/legal
+**
+** This file is part of the Qt3D 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 Digia. For licensing terms and
+** conditions see http://qt.digia.com/licensing. For further information
+** use the contact form at http://qt.digia.com/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 2.1 as published by the Free Software
+** Foundation and appearing in the file LICENSE.LGPL included in the
+** packaging of this file. Please review the following information to
+** ensure the GNU Lesser General Public License version 2.1 requirements
+** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
+**
+** In addition, as a special exception, Digia gives you certain additional
+** rights. These rights are described in the Digia Qt LGPL Exception
+** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
+**
+** GNU General Public License Usage
+** Alternatively, this file may be used under the terms of the GNU
+** General Public License version 3.0 as published by the Free Software
+** Foundation and appearing in the file LICENSE.GPL included in the
+** packaging of this file. Please review the following information to
+** ensure the GNU General Public License version 3.0 requirements will be
+** met: http://www.gnu.org/copyleft/gpl.html.
+**
+**
+** $QT_END_LICENSE$
+**
+****************************************************************************/
+
+#ifndef QT3D_WEAVERJOB_H
+#define QT3D_WEAVERJOB_H
+
+#include <job.h>
+#include "qjob.h"
+
+namespace Qt3D {
+
+class WeaverJob : public ThreadWeaver::Job
+{
+public:
+ WeaverJob();
+
+ void run(ThreadWeaver::JobPointer self, ThreadWeaver::Thread *thread) Q_DECL_OVERRIDE;
+
+ QJobPtr m_job;
+};
+
+} // namespace Qt3D
+
+#endif // QT3D_WEAVERJOB_H