1
0
mirror of https://github.com/tumic0/GPXSee.git synced 2025-02-17 16:20:48 +01:00

More includes cleanup

This commit is contained in:
Martin Tůma 2016-02-12 10:23:14 +01:00
parent 47a753610a
commit 30891482a1
6 changed files with 11 additions and 5 deletions

View File

@ -1,5 +1,6 @@
#include <float.h> #include <float.h>
#include "config.h" #include "config.h"
#include "gpx.h"
#include "elevationgraph.h" #include "elevationgraph.h"

View File

@ -2,9 +2,10 @@
#define ELEVATIONGRAPH_H #define ELEVATIONGRAPH_H
#include "graphview.h" #include "graphview.h"
#include "gpx.h"
#include "units.h" #include "units.h"
class GPX;
class ElevationGraph : public GraphView class ElevationGraph : public GraphView
{ {
Q_OBJECT Q_OBJECT

View File

@ -1,4 +1,5 @@
#include "config.h" #include "config.h"
#include "gpx.h"
#include "speedgraph.h" #include "speedgraph.h"

View File

@ -3,9 +3,10 @@
#include <QList> #include <QList>
#include "graphview.h" #include "graphview.h"
#include "gpx.h"
#include "units.h" #include "units.h"
class GPX;
class SpeedGraph : public GraphView class SpeedGraph : public GraphView
{ {
Q_OBJECT Q_OBJECT

View File

@ -3,6 +3,8 @@
#include <QGraphicsScene> #include <QGraphicsScene>
#include <QPainterPath> #include <QPainterPath>
#include <QWheelEvent> #include <QWheelEvent>
#include "poi.h"
#include "gpx.h"
#include "map.h" #include "map.h"
#include "poiitem.h" #include "poiitem.h"
#include "markeritem.h" #include "markeritem.h"

View File

@ -6,12 +6,12 @@
#include <QHash> #include <QHash>
#include <QList> #include <QList>
#include <QPrinter> #include <QPrinter>
#include "poi.h"
#include "gpx.h"
#include "units.h" #include "units.h"
#include "colorshop.h" #include "colorshop.h"
#include "waypoint.h"
class GPX;
class POI;
class Map; class Map;
class POIItem; class POIItem;
class MarkerItem; class MarkerItem;