summaryrefslogtreecommitdiffstats
path: root/tests/manual/qmlvolume/datasource.h
blob: 5a20500bda7e11c124f717f6f9b231723c4b1585 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// Copyright (C) 2023 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only

#ifndef DATASOURCE_H
#define DATASOURCE_H

#include <QtGraphs/QCustom3DVolume>
#include <QtCore/QObject>

class DataSource : public QObject
{
    Q_OBJECT
public:
    explicit DataSource(QObject *parent = 0);
    ~DataSource() override;

public:
    Q_INVOKABLE void fillVolume(QCustom3DVolume *volumeItem);
};

#endif