2022-08-19 15:59:36 +02:00
|
|
|
// Copyright (C) 2016 The Qt Company Ltd.
|
|
|
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0 WITH Qt-GPL-exception-1.0
|
2011-05-12 16:22:51 +02:00
|
|
|
|
2016-03-18 07:55:01 +01:00
|
|
|
#pragma once
|
2011-05-12 16:22:51 +02:00
|
|
|
|
2011-06-09 15:50:48 +02:00
|
|
|
#include "nodeinstanceclientproxy.h"
|
2011-05-12 16:22:51 +02:00
|
|
|
|
|
|
|
|
namespace QmlDesigner {
|
|
|
|
|
|
2011-06-09 15:50:48 +02:00
|
|
|
class Qt5NodeInstanceClientProxy : public NodeInstanceClientProxy
|
2011-05-12 16:22:51 +02:00
|
|
|
{
|
|
|
|
|
Q_OBJECT
|
|
|
|
|
public:
|
2019-07-31 17:21:41 +02:00
|
|
|
explicit Qt5NodeInstanceClientProxy(QObject *parent = nullptr);
|
2011-05-12 16:22:51 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
} // namespace QmlDesigner
|