mirror of
https://github.com/tumic0/GPXSee.git
synced 2025-02-22 18:20:49 +01:00
18 lines
326 B
C++
18 lines
326 B
C++
#ifndef HEARTRATEGRAPHITEM_H
|
|
#define HEARTRATEGRAPHITEM_H
|
|
|
|
#include "graphitem.h"
|
|
|
|
class HeartRateGraphItem : public GraphItem
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
HeartRateGraphItem(const Graph &graph, GraphType type, int width,
|
|
const QColor &color, QGraphicsItem *parent = 0);
|
|
|
|
QString info() const;
|
|
};
|
|
|
|
#endif // HEARTRATEGRAPHITEM_H
|