mirror of
https://github.com/tumic0/GPXSee.git
synced 2025-05-10 05:07:44 +02:00
18 lines
339 B
C++
18 lines
339 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);
|
|
|
|
ToolTip info(bool extended) const;
|
|
};
|
|
|
|
#endif // HEARTRATEGRAPHITEM_H
|