mirror of
https://github.com/tumic0/GPXSee.git
synced 2025-02-07 20:15:13 +01:00
19 lines
328 B
C++
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
|