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

#ifndef DATASOURCE_H
#define DATASOURCE_H

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

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

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

#endif