// Copyright (C) 2015 The Qt Company Ltd. // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause #ifndef QAXWIDGET_P_H #define QAXWIDGET_P_H // // W A R N I N G // ------------- // // This file is not part of the Qt API. It exists purely as an // implementation detail. This header file may change from version to // version without notice, or even be removed. // // We mean it. // #include #include #include QT_BEGIN_NAMESPACE class QAxClientSite; class QAxWidgetPrivate : public QWidgetPrivate, public QAxBasePrivate { Q_DECLARE_PUBLIC(QAxWidget) public: void clear(); QObject* qObject() const override; const char *className() const override; const QMetaObject *fallbackMetaObject() const override; const QMetaObject *parentMetaObject() const override; void emitException(int code, const QString &source, const QString &desc, const QString &help) override; void emitPropertyChanged(const QString &name) override; void emitSignal(const QString &name, int argc, void *argv) override; QAxClientSite *container = nullptr; }; QT_END_NAMESPACE #endif // QAXWIDGET_P_H