1
0
mirror of https://github.com/tumic0/GPXSee.git synced 2025-02-07 20:15:13 +01:00
GPXSee/src/GUI/cadencegraphitem.h
2019-08-25 10:54:25 +02:00

19 lines
328 B
C++

#ifndef CADENCEGRAPHITEM_H
#define CADENCEGRAPHITEM_H
#include "graphitem.h"
class CadenceGraphItem : public GraphItem
{
Q_OBJECT
public:
CadenceGraphItem(const Graph &graph, GraphType type, int width,
const QColor &color, QGraphicsItem *parent = 0);
private:
QString toolTip() const;
};
#endif // CADENCEGRAPHITEM_H