mirror of
https://github.com/crystalidea/qt6windows7.git
synced 2024-11-24 04:20:46 +08:00
26 lines
487 B
C
26 lines
487 B
C
|
// Copyright (C) 2018 Kitware, Inc.
|
||
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
|
||
|
|
||
|
#ifndef QMOCKPLUGIN_H
|
||
|
#define QMOCKPLUGIN_H
|
||
|
|
||
|
#include <QtCore/QString>
|
||
|
#include <QtCore/QtPlugin>
|
||
|
|
||
|
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
|