mirror of
https://github.com/crystalidea/qt6windows7.git
synced 2024-11-23 12:07:03 +08:00
24 lines
498 B
C++
24 lines
498 B
C++
// Copyright (C) 2016 The Qt Company Ltd.
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
|
|
|
|
#ifndef ECHOPLUGIN_H
|
|
#define ECHOPLUGIN_H
|
|
|
|
#include <QObject>
|
|
#include <QtPlugin>
|
|
#include "echointerface.h"
|
|
|
|
//! [0]
|
|
class EchoPlugin : public QObject, EchoInterface
|
|
{
|
|
Q_OBJECT
|
|
Q_PLUGIN_METADATA(IID "org.qt-project.Qt.Examples.EchoInterface" FILE "echoplugin.json")
|
|
Q_INTERFACES(EchoInterface)
|
|
|
|
public:
|
|
QString echo(const QString &message) override;
|
|
};
|
|
//! [0]
|
|
|
|
#endif
|