17 lines
317 B
C++
17 lines
317 B
C++
#ifndef MULTICHARTVIEW_H
|
|
#define MULTICHARTVIEW_H
|
|
|
|
#include <QWidget>
|
|
#include <nix.hpp>
|
|
class MultiChartView : public QWidget
|
|
{
|
|
public:
|
|
MultiChartView(QWidget *parent = nullptr_t);
|
|
void addArray(const nix::DataArray &array);
|
|
|
|
private:
|
|
std::vector<nix::DataArray> arrays;
|
|
};
|
|
|
|
#endif // MULTICHARTWIDGET_H
|