1
0
mirror of https://github.com/tumic0/GPXSee.git synced 2025-06-27 11:39:16 +02:00

Move the DEM sources to the common folder now that we use them in map/data

This commit is contained in:
2024-02-22 21:34:34 +01:00
parent 108e68c7c9
commit f7a81cafd5
11 changed files with 20 additions and 20 deletions

View File

@ -1,12 +1,12 @@
#include <QFont>
#include <QPainter>
#include <QCache>
#include "common/dem.h"
#include "map/textpathitem.h"
#include "map/textpointitem.h"
#include "map/bitmapline.h"
#include "map/rectd.h"
#include "map/hillshading.h"
#include "data/dem.h"
#include "style.h"
#include "lblfile.h"
#include "rastertile.h"

View File

@ -1,7 +1,7 @@
#include <cmath>
#include <QPainter>
#include <QCache>
#include "data/dem.h"
#include "common/dem.h"
#include "map/rectd.h"
#include "map/hillshading.h"
#include "rastertile.h"