diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2014-02-10 20:28:33 -0800 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2014-02-11 12:34:34 -0800 |
commit | d49acdb3c0298ab3c2493db70d81c4731d6f3fcb (patch) | |
tree | dd11f7172fc4141f1506b23c691fa7443144cf29 /qt-ui/profile/profilewidget2.h | |
parent | 829473ddc64e50169fbc177c6ee5ce2bf702a3ed (diff) | |
download | subsurface-d49acdb3c0298ab3c2493db70d81c4731d6f3fcb.tar.gz |
Clean up include files
They should have a newline at the end.
Forward declarations of classes should be 'class'.
Function / method definitions don't end on a ';'
Remove obsolete QStateMachine forward reference.
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-ui/profile/profilewidget2.h')
-rw-r--r-- | qt-ui/profile/profilewidget2.h | 36 |
1 files changed, 17 insertions, 19 deletions
diff --git a/qt-ui/profile/profilewidget2.h b/qt-ui/profile/profilewidget2.h index 605d93f58..1378bd152 100644 --- a/qt-ui/profile/profilewidget2.h +++ b/qt-ui/profile/profilewidget2.h @@ -16,31 +16,29 @@ #include "graphicsview-common.h" #include "divelineitem.h" +struct dive; +struct plot_info; class ToolTipItem; class MeanDepthLine; class DiveReportedCeiling; class DiveTextItem; class TemperatureAxis; class DiveEventItem; -struct DivePlotDataModel; -struct DivePixmapItem; -struct DiveRectItem; -struct DepthAxis; -struct DiveCartesianAxis; -struct DiveProfileItem; -struct TimeAxis; -struct dive; -struct QStateMachine; -struct DiveCartesianPlane; -struct DiveTemperatureItem; -struct plot_info; -struct DiveGasPressureItem; -struct DiveCalculatedCeiling; -struct DiveReportedCeiling; -struct DiveCalculatedTissue; -struct PartialPressureGasItem; -struct PartialGasPressureAxis; -struct AbstractProfilePolygonItem; +class DivePlotDataModel; +class DivePixmapItem; +class DiveRectItem; +class DepthAxis; +class DiveCartesianAxis; +class DiveProfileItem; +class TimeAxis; +class DiveCartesianPlane; +class DiveTemperatureItem; +class DiveGasPressureItem; +class DiveCalculatedCeiling; +class DiveCalculatedTissue; +class PartialPressureGasItem; +class PartialGasPressureAxis; +class AbstractProfilePolygonItem; class ProfileWidget2 : public QGraphicsView { Q_OBJECT |