AudibleT 0.0.1
A real-time A/B/X audio testing tool for subjective assessment of various audio parameters, compatible for general purpose computer as well as embedded systems.
Loading...
Searching...
No Matches
inversebinomialgraph.h
1#ifndef INVERSEBINOMIALGRAPH_H
2#define INVERSEBINOMIALGRAPH_H
3
4#include <QChart>
5#include <QChartView>
6
7#include "SessionTrial.h"
8
9class InverseBinomialGraph : public QChartView
10{
11 Q_OBJECT
12
13public:
14 explicit InverseBinomialGraph(QWidget *parent = nullptr);
15 void updateGraph(const QVector<SessionTrial> &trials);
16
17private:
18 QChart *createInverseBinomialChart(const QVector<SessionTrial> &trials);
19};
20
21#endif // INVERSEBINOMIALGRAPH_H
22
Definition: inversebinomialgraph.h:10