aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/debugger
diff options
context:
space:
mode:
authorMarc Mutz <marc.mutz@qt.io>2022-05-09 15:40:41 +0200
committerMarc Mutz <marc.mutz@qt.io>2022-05-09 23:42:22 +0200
commit7d8efe56cbe75c4769b24ba978da4d308a2a291f (patch)
tree90345c39ed014293a7cec3ae607ed946feee6b24 /src/qml/debugger
parent868a5c19bcd45df27dca365264084c3bbb365701 (diff)
Add a TU for QQmlDebugServerConnection{,Factory} 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: I2b59d18fb4530245cccace895ff86ab0634d9f55 Reviewed-by: Ulf Hermann <ulf.hermann@qt.io>
Diffstat (limited to 'src/qml/debugger')
-rw-r--r--src/qml/debugger/qqmldebugserverconnection.cpp52
-rw-r--r--src/qml/debugger/qqmldebugserverconnection_p.h2
2 files changed, 54 insertions, 0 deletions
diff --git a/src/qml/debugger/qqmldebugserverconnection.cpp b/src/qml/debugger/qqmldebugserverconnection.cpp
new file mode 100644
index 0000000000..c74589df8a
--- /dev/null
+++ b/src/qml/debugger/qqmldebugserverconnection.cpp
@@ -0,0 +1,52 @@
+/****************************************************************************
+**
+** 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 "qqmldebugserverconnection_p.h"
+
+QT_BEGIN_NAMESPACE
+
+QQmlDebugServerConnection::~QQmlDebugServerConnection()
+ = default;
+
+QQmlDebugServerConnectionFactory::~QQmlDebugServerConnectionFactory()
+ = default;
+
+QT_END_NAMESPACE
+
+#include "moc_qqmldebugserverconnection_p.cpp"
diff --git a/src/qml/debugger/qqmldebugserverconnection_p.h b/src/qml/debugger/qqmldebugserverconnection_p.h
index 9c4af4d225..b378f878bf 100644
--- a/src/qml/debugger/qqmldebugserverconnection_p.h
+++ b/src/qml/debugger/qqmldebugserverconnection_p.h
@@ -62,6 +62,7 @@ class Q_QML_PRIVATE_EXPORT QQmlDebugServerConnection : public QObject
Q_OBJECT
public:
QQmlDebugServerConnection(QObject *parent = nullptr) : QObject(parent) {}
+ ~QQmlDebugServerConnection() override;
virtual void setServer(QQmlDebugServer *server) = 0;
virtual bool setPortRange(int portFrom, int portTo, bool block, const QString &hostaddress) = 0;
@@ -76,6 +77,7 @@ class Q_QML_PRIVATE_EXPORT QQmlDebugServerConnectionFactory : public QObject
{
Q_OBJECT
public:
+ ~QQmlDebugServerConnectionFactory() override;
virtual QQmlDebugServerConnection *create(const QString &key) = 0;
};