summaryrefslogtreecommitdiff
path: root/src/charts/DataPoint.h
blob: 394d1be3a9964c62157a2482ce90a5041e449c85 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifndef DATAPOINT_H
#define DATAPOINT_H

struct DataPoint
{
public:
    DataPoint(const QString& label, int value, QString toolTipLabel = ""):
        label(label), value(value), toolTipLabel(toolTipLabel) {}

    QString label;
    int value;
    QString toolTipLabel;
};

#endif