summaryrefslogtreecommitdiffstats
path: root/src/core/aspects/qaspectfactory_p.h
diff options
context:
space:
mode:
authorKevin Ottens <kevin.ottens@kdab.com>2015-01-21 16:44:00 +0100
committerGiuseppe D'Angelo <giuseppe.dangelo@kdab.com>2015-01-23 18:03:49 +0100
commitb9dcab64904c762a9a652cb4a3882bda21027565 (patch)
treee43abcab5ed3eb48d8ad47c68f17a8d761336f31 /src/core/aspects/qaspectfactory_p.h
parent05e704725bfe1f094d45677738173feec855e915 (diff)
Add QAspectFactory class, creates aspects by name
Change-Id: I91480d9a61accf313d10f5ddb21100fdc13481c2 Reviewed-by: Giuseppe D'Angelo <giuseppe.dangelo@kdab.com>
Diffstat (limited to 'src/core/aspects/qaspectfactory_p.h')
-rw-r--r--src/core/aspects/qaspectfactory_p.h71
1 files changed, 71 insertions, 0 deletions
diff --git a/src/core/aspects/qaspectfactory_p.h b/src/core/aspects/qaspectfactory_p.h
new file mode 100644
index 000000000..72ee94596
--- /dev/null
+++ b/src/core/aspects/qaspectfactory_p.h
@@ -0,0 +1,71 @@
+/****************************************************************************
+**
+** Copyright (C) 2015 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_QASPECTFACTORY_P_H
+#define QT3D_QASPECTFACTORY_P_H
+
+#include <QHash>
+#include <QSharedData>
+#include <QString>
+
+#include "qaspectfactory.h"
+
+QT_BEGIN_NAMESPACE
+
+namespace Qt3D {
+
+class QAspectFactory;
+
+class QAspectFactoryPrivate : public QSharedData
+{
+public:
+ static QHash<QString, QAspectFactory::CreateFunction> m_defaultFactories;
+
+ QAspectFactoryPrivate();
+
+ QHash<QString, QAspectFactory::CreateFunction> m_factories;
+};
+
+} // Qt3D
+
+QT_END_NAMESPACE
+
+#endif // QT3D_QASPECTFACTORY_P_H