mirror of
https://github.com/tumic0/GPXSee.git
synced 2025-01-31 17:15:14 +01:00
19 lines
286 B
C++
19 lines
286 B
C++
#ifndef POWERGRAPHITEM_H
|
|
#define POWERGRAPHITEM_H
|
|
|
|
#include "graphitem.h"
|
|
|
|
class PowerGraphItem : public GraphItem
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
PowerGraphItem(const Graph &graph, GraphType type,
|
|
QGraphicsItem *parent = 0);
|
|
|
|
private:
|
|
QString toolTip() const;
|
|
};
|
|
|
|
#endif // POWERGRAPHITEM_H
|