// Copyright (C) 2015 Klaralvdalens Datakonsult AB (KDAB). // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only #ifndef QT3DCORE_QASPECTFACTORY_P_H #define QT3DCORE_QASPECTFACTORY_P_H // // W A R N I N G // ------------- // // This file is not part of the Qt API. It exists for the convenience // of other Qt classes. This header file may change from version to // version without notice, or even be removed. // // We mean it. // #include #include #include QT_BEGIN_NAMESPACE struct QMetaObject; class QObject; namespace Qt3DCore { class QAbstractAspect; class Q_3DCORE_PRIVATE_EXPORT QAspectFactory { public: typedef QAbstractAspect *(*CreateFunction)(QObject *); QAspectFactory(); QAspectFactory(const QAspectFactory &other); ~QAspectFactory(); QAspectFactory &operator=(const QAspectFactory &other); #ifdef Q_COMPILER_RVALUE_REFS QAspectFactory &operator=(QAspectFactory &&other) noexcept { m_factories.swap(other.m_factories); m_aspectNames.swap(other.m_aspectNames); return *this; } #endif inline void swap(QAspectFactory &other) noexcept { m_factories.swap(other.m_factories); m_aspectNames.swap(other.m_aspectNames); } QList availableFactories() const; QAbstractAspect *createAspect(const QLatin1String &aspect, QObject *parent = 0) const; QLatin1String aspectName(QAbstractAspect *aspect) const; private: QHash m_factories; QHash m_aspectNames; }; } // namespace Qt3DCore QT_END_NAMESPACE #endif // QT3DCORE_QASPECTFACTORY_P_H