diff options
author | Marc Mutz <[email protected]> | 2022-05-09 15:40:41 +0200 |
---|---|---|
committer | Marc Mutz <[email protected]> | 2022-05-09 23:42:21 +0200 |
commit | 868a5c19bcd45df27dca365264084c3bbb365701 (patch) | |
tree | 8755b28dd34d6bb5db697a8ed926b06efa92cf1c /src/qml/debugger/qqmldebugservicefactory.cpp | |
parent | c2b1aad7918d23f3094525c0a57ae4c9fd88b81e (diff) |
Add a TU for QQmlDebugServiceFactory to de-inline dtor & includemocs
Destructors of polymorphic classes should be out-of-line.
Header moc files should be included into the implementation files.
Both need a TU, so add one.
Task-number: QTBUG-102948
Task-number: QTBUG-45582
Change-Id: Ifbfb7f462aa94c7f7e2db8a179e06392f021e097
Reviewed-by: Ulf Hermann <[email protected]>
Diffstat (limited to 'src/qml/debugger/qqmldebugservicefactory.cpp')
-rw-r--r-- | src/qml/debugger/qqmldebugservicefactory.cpp | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/src/qml/debugger/qqmldebugservicefactory.cpp b/src/qml/debugger/qqmldebugservicefactory.cpp new file mode 100644 index 0000000000..92245544f7 --- /dev/null +++ b/src/qml/debugger/qqmldebugservicefactory.cpp @@ -0,0 +1,49 @@ +/**************************************************************************** +** +** Copyright (C) 2022 The Qt Company Ltd. +** Contact: https://www.qt.io/licensing/ +** +** This file is part of the QtQml 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 The Qt Company. For licensing terms +** and conditions see https://www.qt.io/terms-conditions. For further +** information use the contact form at https://www.qt.io/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 3 as published by the Free Software +** Foundation and appearing in the file LICENSE.LGPL3 included in the +** packaging of this file. Please review the following information to +** ensure the GNU Lesser General Public License version 3 requirements +** will be met: https://www.gnu.org/licenses/lgpl-3.0.html. +** +** GNU General Public License Usage +** Alternatively, this file may be used under the terms of the GNU +** General Public License version 2.0 or (at your option) the GNU General +** Public license version 3 or any later version approved by the KDE Free +** Qt Foundation. The licenses are as published by the Free Software +** Foundation and appearing in the file LICENSE.GPL2 and LICENSE.GPL3 +** included in the packaging of this file. Please review the following +** information to ensure the GNU General Public License requirements will +** be met: https://www.gnu.org/licenses/gpl-2.0.html and +** https://www.gnu.org/licenses/gpl-3.0.html. +** +** $QT_END_LICENSE$ +** +****************************************************************************/ + +#include "qqmldebugservicefactory_p.h" + +QT_BEGIN_NAMESPACE + +QQmlDebugServiceFactory::~QQmlDebugServiceFactory() + = default; + +QT_END_NAMESPACE + +#include "moc_qqmldebugservicefactory_p.cpp" |