##// END OF EJS Templates
fix a warning
trabillard -
r1009:bb648cea0303
parent child
Show More
@@ -1,26 +1,26
1 #ifndef VISUALIZATIONCURSORITEM_H
2 #define VISUALIZATIONCURSORITEM_H
1 #ifndef SCIQLOP_VISUALIZATIONCURSORITEM_H
2 #define SCIQLOP_VISUALIZATIONCURSORITEM_H
3 3
4 4 #include <Common/spimpl.h>
5 5 #include <SqpApplication.h>
6 6
7 7 class QCustomPlot;
8 8
9 9 class VisualizationCursorItem {
10 10 public:
11 11 VisualizationCursorItem(QCustomPlot *plot);
12 12
13 13 void setVisible(bool value);
14 14 bool isVisible() const;
15 15
16 16 void setPosition(double value);
17 17 void setAbsolutePosition(double value);
18 18 void setOrientation(Qt::Orientation orientation);
19 19 void setLabelText(const QString &text);
20 20
21 21 private:
22 22 class VisualizationCursorItemPrivate;
23 23 spimpl::unique_impl_ptr<VisualizationCursorItemPrivate> impl;
24 24 };
25 25
26 #endif // VISUALIZATIONCURSORITEM_H
26 #endif // SCIQLOP_VISUALIZATIONCURSORITEM_H
General Comments 1
Under Review
author

Auto status change to "Under Review"

You need to be logged in to leave comments. Login now