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 QMOCKPLUGIN_H
|
|
|
|
#define QMOCKPLUGIN_H
|
|
|
|
|
2023-03-09 14:21:41 +00:00
|
|
|
#include <QtCore/QString>
|
|
|
|
#include <QtCore/QtPlugin>
|
2018-10-17 20:03:28 +00:00
|
|
|
|
|
|
|
QT_BEGIN_NAMESPACE
|
|
|
|
|
|
|
|
#define QMockPlugin_iid "org.qt-project.Qt.Tests.QMockPlugin"
|
|
|
|
|
|
|
|
class QMockPlugin
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
virtual ~QMockPlugin() {}
|
|
|
|
virtual QString pluginName() const = 0;
|
|
|
|
};
|
|
|
|
|
|
|
|
Q_DECLARE_INTERFACE(QMockPlugin, QMockPlugin_iid)
|
|
|
|
|
|
|
|
QT_END_NAMESPACE
|
|
|
|
|
|
|
|
#endif // QMOCKPLUGIN_H
|