mirror of
https://github.com/tumic0/GPXSee.git
synced 2024-11-24 11:45:53 +01:00
18 lines
316 B
C++
18 lines
316 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);
|
|
|
|
ToolTip info() const;
|
|
};
|
|
|
|
#endif // CADENCEGRAPHITEM_H
|