summaryrefslogtreecommitdiffstats
path: root/src/datavisualization/engine/abstractdeclarativeinterface_p.h
blob: 8ea01bb1c1c2e060b5f069f64d8c914d3971bf11 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
// Copyright (C) 2022 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only

#ifndef ABSTRACTDECLARATIVEINTERFACE_P_H
#define ABSTRACTDECLARATIVEINTERFACE_P_H

#include <QtDataVisualization/qdatavisualizationglobal.h>

//
//  W A R N I N G
//  -------------
//
// This file is not part of the QtDataVisualization 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.

QT_BEGIN_NAMESPACE

class Q_DATAVISUALIZATION_EXPORT AbstractDeclarativeInterface
{
protected:
    ~AbstractDeclarativeInterface();
public:
    virtual bool isReady() const = 0;
};

QT_END_NAMESPACE

#endif