2022-05-10 10:06:48 +00:00
|
|
|
// Copyright (C) 2018 Kitware, Inc.
|
|
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
|
2018-10-17 20:03:28 +00:00
|
|
|
|
|
|
|
#ifndef QMOCK1PLUGIN_H
|
|
|
|
#define QMOCK1PLUGIN_H
|
|
|
|
|
|
|
|
#include <QObject>
|
|
|
|
#include <QtMockPlugins1/QMockPlugin>
|
|
|
|
|
|
|
|
QT_BEGIN_NAMESPACE
|
|
|
|
|
|
|
|
class QMock1Plugin : public QObject, public QMockPlugin
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
Q_PLUGIN_METADATA(IID QMockPlugin_iid FILE "mock1plugin.json")
|
|
|
|
Q_INTERFACES(QMockPlugin)
|
|
|
|
public:
|
|
|
|
QString pluginName() const override;
|
|
|
|
};
|
|
|
|
|
|
|
|
QT_END_NAMESPACE
|
|
|
|
|
|
|
|
#endif // QMOCK1PLUGIN_H
|