1
0
mirror of https://github.com/tumic0/GPXSee.git synced 2024-11-24 03:35:53 +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 "config.h"
#include "gpx.h"
#include "elevationgraph.h"

View File

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

View File

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

View File

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

View File

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

View File

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