1 | // Copyright (C) 2022 The Qt Company Ltd. |
2 | // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only |
3 | |
4 | #ifndef ABSTRACTDECLARATIVEINTERFACE_P_H |
5 | #define ABSTRACTDECLARATIVEINTERFACE_P_H |
6 | |
7 | #include <QtDataVisualization/qdatavisualizationglobal.h> |
8 | |
9 | // |
10 | // W A R N I N G |
11 | // ------------- |
12 | // |
13 | // This file is not part of the QtDataVisualization API. It exists purely as an |
14 | // implementation detail. This header file may change from version to |
15 | // version without notice, or even be removed. |
16 | // |
17 | // We mean it. |
18 | |
19 | QT_BEGIN_NAMESPACE |
20 | |
21 | class Q_DATAVISUALIZATION_EXPORT AbstractDeclarativeInterface |
22 | { |
23 | protected: |
24 | ~AbstractDeclarativeInterface(); |
25 | public: |
26 | virtual bool isReady() const = 0; |
27 | }; |
28 | |
29 | QT_END_NAMESPACE |
30 | |
31 | #endif |
32 | |