kdeconnect-kde/declarativeplugin/objectfactory.cpp
Alexander Lohnau 2e67f95017 Add explicit moc includes to cpp files
The rationale is explained in https://planet.kde.org/friedrich-kossebau-2023-06-28-include-also-moc-files-of-headers/

In case of KDEConnect, it impressively speeds up compilation. Before it
took 390 seconds on a clean build and with this change it took 330 seconds.
This is due to the mocs_compilation having to include the header files
and thus all their headers. Due to the lots of small plugins we have,
this means that the same headers must be compiled plenty of times.
When we include the moc files directly in the C++ file, they are already
available.
2023-07-30 07:27:45 +00:00

30 lines
589 B
C++

/**
* SPDX-FileCopyrightText: 2013 Albert Vaca <albertvaka@gmail.com>
*
* SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL
*/
#include "objectfactory.h"
QObject *ObjectFactory::create()
{
if (m_f0)
return m_f0();
return nullptr;
}
QObject *ObjectFactory::create(const QVariant &arg1)
{
if (m_f1)
return m_f1(arg1);
return nullptr;
}
QObject *ObjectFactory::create(const QVariant &arg1, const QVariant &arg2)
{
if (m_f2)
return m_f2(arg1, arg2);
return nullptr;
}
#include "moc_objectfactory.cpp"